GET
/
voices
curl --request GET \
  --url https://api.puretalk.ai/api/voices \
  --header 'X-API-KEY: <api-key>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": 123,
      "voice_id": "<string>",
      "name": "<string>",
      "provider_voice_id": "<string>",
      "provider": "<string>",
      "avatar": "<string>",
      "gender": "<string>",
      "is_published": true
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

page
integer

The page number to return

limit
integer

The maximum number of results to return

Response

200
application/json
Voices response
count
integer
next
string | null
previous
string | null
results
object[]