Skip to main content
GET
/
v1
/
voices
/
{id}
cURL
curl --request GET \
  --url https://api.anam.ai/v1/voices/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "displayName": "<string>",
  "provider": "<string>",
  "providerVoiceId": "<string>",
  "providerModelId": "<string>",
  "sampleUrl": "<string>",
  "gender": "male",
  "country": "<string>",
  "description": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "createdByOrganizationId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Voice ID

Response

Successfully retrieved voice

id
string
displayName
string
provider
string
providerVoiceId
string
providerModelId
string | null
sampleUrl
string | null
gender
enum<string> | null
Available options:
male,
female,
neutral
country
string | null

ISO 3166-1 alpha-2 country code

description
string | null
createdAt
string
updatedAt
string
createdByOrganizationId
string | null
I