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

# List STT Providers

> Returns a list of available speech-to-text (STT) providers that can be used when creating or updating agents

Use this endpoint to discover valid values for the `sttModel` field when creating or updating agents.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.telzino.com/v1/stt-providers" \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.telzino.com/v1/stt-providers', {
    headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN' }
  });

  const { data } = await response.json();
  console.log(data); // [{ id: 'deepgram', name: 'Deepgram', ... }]
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://api.telzino.com/v1/stt-providers',
      headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
  )

  providers = response.json()['data']
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": "deepgram",
        "name": "Deepgram",
        "description": "Real-time speech-to-text powered by Deepgram Nova"
      }
    ]
  }
  ```

  ```json 401 theme={null}
  {
    "error": "invalid_token",
    "error_description": "Missing or invalid authorization token"
  }
  ```
</ResponseExample>

## Response Fields

| Field         | Type   | Description                                                                             |
| ------------- | ------ | --------------------------------------------------------------------------------------- |
| `id`          | string | Provider identifier — use this as the `sttModel` value when creating or updating agents |
| `name`        | string | Display name of the provider                                                            |
| `description` | string | Brief description of the provider's capabilities                                        |
