***

title: getVerbNames
slug: /reference/typescript/agents/configuration/schema-utils/get-verb-names
description: Get all verb names defined in the SWML schema.
max-toc-depth: 3
---------------------

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

Get all verb names defined in the schema (e.g., `"answer"`, `"ai"`, `"hangup"`).

## **Parameters**

None.

## **Returns**

`string[]` -- Array of verb names.

## **Example**

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

const schema = new SchemaUtils();
const verbs = schema.getVerbNames();
console.log(verbs); // ["answer", "ai", "hangup", "play", ...]
```