Skip to main content
GET
/
voices
/
:id
curl https://api.60db.ai/voices/voice-001 \
  -H "Authorization: Bearer your-api-key"
{
  "id": "voice-001",
  "name": "Sarah",
  "description": "Professional female voice with American accent",
  "language": "en-US",
  "gender": "female",
  "age": "middle",
  "accent": "American",
  "use_case": ["narration", "customer-service"],
  "sample_url": "https://cdn.60db.com/samples/voice-001.mp3",
  "is_custom": false,
  "created_at": "2026-01-15T10:00:00Z"
}

Request

Path Parameters

id
string
required
The unique identifier of the voice

Headers

Authorization
string
required
Bearer token with your API key

Response

id
string
Unique voice identifier
name
string
Voice name
description
string
Voice description
language
string
Language code
gender
string
Voice gender
is_custom
boolean
Whether this is a custom voice
sample_url
string
URL to voice sample
created_at
string
ISO 8601 timestamp
curl https://api.60db.ai/voices/voice-001 \
  -H "Authorization: Bearer your-api-key"
{
  "id": "voice-001",
  "name": "Sarah",
  "description": "Professional female voice with American accent",
  "language": "en-US",
  "gender": "female",
  "age": "middle",
  "accent": "American",
  "use_case": ["narration", "customer-service"],
  "sample_url": "https://cdn.60db.com/samples/voice-001.mp3",
  "is_custom": false,
  "created_at": "2026-01-15T10:00:00Z"
}