---
title: "List Orders"
method: GET
path: "/v1/productions/orders"
tags: ["productions"]
---

# List Orders

`GET /v1/productions/orders`

Lists Productions orders in the workspace. Supports filtering by status and date range, with pagination.

## Query parameters

- `page_size` integer — Maximum number of orders to return per page.
- `offset` integer — Number of orders to skip for pagination.
- `status` OrderState[], nullable — Filter orders by one or more statuses.
- `start_date` string, date-time, nullable — Filter orders created on or after this date.
- `end_date` string, date-time, nullable — Filter orders created on or before this date.

## Headers

- `xi-api-key` string, nullable — 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.

## Response `200`

Successful Response

- ListOrdersResponse
  - `orders` OrderSummary[], required — The list of orders matching the query.
    - `order_id` string, required
    - `name` string, required — The display name of the order.
    - `state` 'open' | 'submitted' | 'paid' | 'accepted' | 'rejected' | 'done' | 'cancelling' | 'cancelled' | 'expired', required
    - `total_amount_usd` number, nullable — The total price for all items in USD. Excluded from response until quotes are available.
    - `sandbox` boolean — Whether this is a sandbox order that auto-progresses without producer intervention.
    - `submitted_at` string, date-time, nullable — The timestamp when the order was submitted, if applicable.
    - `updated_at` string, date-time, nullable — The timestamp when the order was last modified, if applicable.
    - `cancel_reason` string, nullable — The reason the order was cancelled, if applicable.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/elevenlabs/apis/elevenlabs-api-documentation.md) · [All operations](https://skmtc.net/elevenlabs/apis/elevenlabs-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/elevenlabs/elevenlabs-api-documentation/revisions/6c2d6eb4a7e6/schema)
