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

# List TTS providers

> List text-to-speech providers available for voice agents

Returns the text-to-speech providers you can synthesise agent speech with. To
pick a specific voice, see [List voices](/docs/api-reference/configuration/list-voices).

<CodeGroup>
  ```bash curl theme={null}
  curl https://api.agentic-os.com/api/v1/tts-providers \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  requests.get(
      "https://api.agentic-os.com/api/v1/tts-providers",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  ```

  ```javascript Node theme={null}
  await fetch("https://api.agentic-os.com/api/v1/tts-providers", {
    headers: { Authorization: `Bearer ${API_KEY}` },
  });
  ```
</CodeGroup>
