***

title: getBuilder
slug: /reference/typescript/agents/swml-service/get-builder
description: Get the underlying SwmlBuilder for direct manipulation.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Get the underlying `SwmlBuilder` for direct verb manipulation.

## **Parameters**

This method takes no parameters.

## **Returns**

`SwmlBuilder` -- The underlying SwmlBuilder instance.

## **Example**

```typescript {4}
import { SWMLService } from '@signalwire/sdk';

const sWMLService = new SWMLService();
const result = sWMLService.getBuilder();
console.log(result);
```