> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voxeme.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Development

> Preview and test Voxeme AI locally

<Note>
  The Voxeme API (documented in OpenAPI format) is currently in alpha. While all endpoints are functional, they are subject to change as we continue to enhance our omni-channel voice operating system.
</Note>

## Local Development

You can test the Voxeme API using any REST client that supports OpenAPI/Swagger specifications. Here's how to get started:

### Using REST Clients

1. Download our OpenAPI specification from `/api-reference/openapi.json`
2. Import the specification into your preferred REST client:
   * [Postman](https://www.postman.com/)
   * [Insomnia](https://insomnia.rest/)
   * Or any other OpenAPI-compatible REST client

This will automatically configure all available endpoints, request/response schemas, and authentication requirements in your REST client.

### CLI Development

If you prefer using our CLI tool, follow these steps:

**Step 1**: Install the Voxeme CLI:

<CodeGroup>
  ```bash npm theme={null}
  npm i -g @voxeme/cli
  ```

  ```bash yarn theme={null}
  yarn global add @voxeme/cli
  ```
</CodeGroup>

**Step 2**: Navigate to your project directory and start the development server:

```bash theme={null}
voxeme dev
```

Your local development environment will be available at `http://localhost:3000`.
