> ## 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 custom Offers

> Find custom Offer IDs with a bounded Administrator request.

Use `customOffers` to list custom Offers on your Platform. Send your [Administrator headers](/en/api/api-conventions#requests-and-access-mode).

```graphql theme={null}
query ListCustomOffers($limit: Int) {
  customOffers(pagination: { limit: $limit }) {
    id
    name
    status
  }
}
```

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

Keep the returned `id` as `offerId` when a later operation needs that Offer. Every Course also has an automatic base Offer; `customOffers` does not list those base Offers.

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 [`customOffers` query reference](/en/api/reference/queries/customOffers) for its supported pagination input and return fields.
