Documentation Index
Fetch the complete documentation index at: https://docs.destined.ai/llms.txt
Use this file to discover all available pages before exploring further.
This endpoint does not require authentication.
Query Parameters
Filter by gender: Male, Female, or Non-binary
Filter by region (e.g., Georgia, California)
Filter by accent (e.g., Southern, General American)
Filter by age bracket (e.g., 25-34, 35-44)
Number of results to return (max 100)
Number of results to skip
Response
Total number of matching speakers
Whether more results are available
curl "https://api.destined.ai/v1/speakers?gender=Female&limit=10"
{
"items": [
{
"id": "abc123-def456",
"gender": "Female",
"region": "Georgia",
"accent": "Southern",
"age_range": "25-34",
"native_language": "English",
"sample_audio_url": "https://voice.s3.amazonaws.com/samples/abc123.wav"
}
],
"total": 1500,
"limit": 10,
"offset": 0,
"has_more": true
}