> ## Documentation Index
> Fetch the complete documentation index at: https://www.help.creatora.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Orders

> Read a bounded set of Order IDs, timestamps and statuses.

Use `orders` to identify commercial records. Send your [Administrator headers](/en/api/api-conventions#requests-and-access-mode).

```graphql theme={null}
query ListOrders($limit: Int) {
  orders(pagination: { limit: $limit }) {
    id
    createdOn
    status
  }
}
```

```json theme={null}
{ "limit": 20 }
```

Keep the returned `id` as `orderId` for later Order work. An Order can be open, succeeded, failed, refunded or disputed. Its presence alone does not prove a Student's current Course access.

This bounded read is not a complete export. See [API conventions](/en/api/api-conventions#lists-and-pagination) before designing any multi-page retrieval.

See the [`orders` query reference](/en/api/reference/queries/orders) for its supported pagination input and return fields.
