GET
/v1/dubbing
ElevenLabs APIList Dubs
- Base URL
- https://api.elevenlabs.io
- Auth
- xi-api-key: <ELEVENLABS_API_KEY>
- Last verified
- 2026-09-03 · upstream hash matched
Actions
Agents: curl -H "Accept: text/markdown" this URL
→ 234 tokens · Vary: Accept
→ 234 tokens · Vary: Accept
Critical gotchas
Authentication uses the non-standard xi-api-key header, not Authorization: Bearer. Sending a Bearer token returns HTTP 401.
Text-to-speech responses are raw binary audio, not JSON. Write the body to a file (--output speech.mp3) rather than parsing it.
cURL
curl -X GET 'https://api.elevenlabs.io/v1/dubbing?cursor=example-cursor&page_size=100&dubbing_status=dubbing&dubbing_statuses=example&dubbing_models=example&target_language_codes=example&creation_sources=example&filter_by_creator=all&order_by=created_at&order_direction=DESCENDING' \ -H "xi-api-key: $ELEVENLABS_API_KEY"Get a free ElevenLabs API key → sponsored
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| cursor | query | string | No | Used for fetching next page. Cursor is returned in the response. |
| page_size | query | integer | No | How many dubs to return at maximum. Can not exceed 200, defaults to 100. |
| dubbing_status | query | string | No | What state the dub is currently in. |
| dubbing_statuses | query | string[] | No | Filter by dubbing status. |
| dubbing_models | query | string[] | No | Filter by dubbing model generation. |
| target_language_codes | query | string[] | No | Filter by target language code. |
| creation_sources | query | string[] | No | Filter by dubbing creation source. |
| filter_by_creator | query | string | No | Filters who created the resources being listed, whether it was the user running the request or someone else that shared the resource with them. |
| order_by | query | string | No | The field to use for ordering results from this query. |
| order_direction | query | string | No | The order direction to use for results from this query. |
Response 200 OK
{
"dubs": [
{
"created_at": "2025-07-15T14:49:41.149000",
"dubbing_id": "21m00Tcm4TlvDq8ikWAM",
"editable": true,
"media_metadata": {
"content_type": "video/mp4",
"duration": 127.5
},
"name": "My Dubbing Project",
"source_language": "en",
"status": "dubbed",
"target_languages": [
"es",
"fr",
"de"
]
}
],
"next_cursor": "string",
"has_more": true
}