Skip to main content
GET
/
voices
cURL
curl --request GET \
  --url https://api.puretalk.ai/api/voices \
  --header 'X-API-KEY: <api-key>'
{
  "count": 100,
  "next": "https://api.puretalk.ai/api/voices?page=2",
  "previous": "https://api.puretalk.ai/api/voices?page=1",
  "results": [
    {
      "voice_id": "Puretalk Model V4",
      "name": "Seven",
      "avatar": "https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-57f71505-0c31-4032-b9e8-f0985d7ae43d-webp",
      "gender": "female",
      "demo_audio_url": "https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-b6dfdb86-6bf3-4851-b134-b525f0a13628-mp3",
      "is_cloned": false,
      "language": "en",
      "description": "This is a description of the voice"
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Authorization header containing API key. You can find your API key in the dashboard under 'API Keys'.

Query Parameters

page
integer<int32>

The page number to return

limit
integer<int32>

The maximum number of results to return

Response

Voices response

count
integer<int32>

Total number of voices

Example:

100

next
string | null

Next page URL

Example:

"https://api.puretalk.ai/api/voices?page=2"

previous
string | null

Previous page URL

Example:

"https://api.puretalk.ai/api/voices?page=1"

results
object[]