provider dubbingdubbingdubbing GET
/v1/dubbing @utdk/elevenlabs
/v1/dubbing List Dubs
List the dubs you have access to.
- cursor query
- Used for fetching next page. Cursor is returned in the response.
- page_size query
- How many dubs to return at maximum. Can not exceed 200, defaults to 100.
- integer
- dubbing_status query
- What state the dub is currently in.
- enum: dubbing, dubbed, failed
- filter_by_creator query
- Filters who created the resources being listed, whether it was the user running the request or someone else that shared the resource with them.
- enum: personal, others, all
- order_by query
- The field to use for ordering results from this query.
- string
- order_direction query
- The order direction to use for results from this query.
- enum: DESCENDING, ASCENDING
- xi-api-key header
- Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.
Try it
Authentication
Configure credentials for ElevenLabs API Documentation
Code snippet
Updates live as you fill in the form above.
TypeScript
import elevenlabs from '@utdk/elevenlabs';
await elevenlabs.listDubs({
"page_size": 100,
"filter_by_creator": "all",
"order_by": "created_at",
"order_direction": "DESCENDING"
})