> ## Documentation Index
> Fetch the complete documentation index at: https://demeterrr.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Sequences

> Retrieve all sequences

## Authentication

Requires `sequences:read` scope.

## Query Parameters

<ParamField query="page" type="integer" default="1">
  Page number
</ParamField>

<ParamField query="limit" type="integer" default="50">
  Items per page (max: 100)
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://app.demeterrr.com/api/v1/sequences \
    -H "X-API-Key: dem_your_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "data": [
      {
        "id": "880e8400-e29b-41d4-a716-446655440000",
        "name": "Post-Purchase Satisfaction Survey",
        "description": "CSAT survey sent after purchase",
        "status": "active",
        "createdAt": "2026-01-10T10:00:00.000Z"
      }
    ],
    "meta": {
      "page": 1,
      "perPage": 50,
      "total": 15,
      "totalPages": 1
    }
  }
  ```
</ResponseExample>
