provider productions GET
/v1/productions/orders @utdk/elevenlabs
/v1/productions/orders List Orders
Lists Productions orders in the workspace. Supports filtering by status and date range, with pagination.
- page_size query
- Maximum number of orders to return per page.
- integer
- offset query
- Number of orders to skip for pagination.
- integer
- status query
- Filter orders by one or more statuses.
- start_date query
- Filter orders created on or after this date.
- end_date query
- Filter orders created on or before this date.
- 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.publicListOrders({
"page_size": 20,
"offset": 0
})