Skip to main content
GET
/
v1
/
voice
/
providers
List voice providers
curl --request GET \
  --url https://api.agntix.ai/v1/voice/providers \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "ElevenLabs",
      "slug": "elevenlabs",
      "isActive": true
    }
  ]
}
Every endpoint on this page requires either a Clerk-issued JWT (Authorization: Bearer <token>) or an organization API key (x-api-key: pk_…). Anonymous calls return 401 Unauthorized. See Authentication for the full setup.

Code examples

curl https://api.agntix.ai/v1/voice/providers \
  -H "x-api-key: pk_live_••••"

Sample response

{
  "data": [
    {
      "id": "pvdr_elevenlabs",
      "name": "ElevenLabs",
      "slug": "elevenlabs",
      "isActive": true
    },
    {
      "id": "pvdr_deepgram",
      "name": "Deepgram",
      "slug": "deepgram",
      "isActive": true
    },
    {
      "id": "pvdr_azure",
      "name": "Azure Cognitive Services",
      "slug": "azure",
      "isActive": false
    }
  ]
}
Provider availability depends on your organization’s subscription plan. Contact [email protected] to enable additional providers.

Authorizations

x-api-key
string
header
required

Organization API key. Obtain from the dashboard. Format: pk_live_…

Response

List of providers.

data
object[]