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

# List Sequences

> List automation sequences in your current company

# List Sequences

Returns the sequences for the company attached to your API key.

## Request

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/sequences" \
  -H "Authorization: Bearer seq_live_xxx"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "sequences": [
      {
        "id": "seq_abc123",
        "name": "Welcome Sequence",
        "status": "draft",
        "trigger": "trigger_list",
        "sendingWindow": {
          "enabled": true,
          "timezone": "Europe/Kiev",
          "startTime": "08:00",
          "endTime": "20:00",
          "days": ["monday", "tuesday", "wednesday", "thursday", "friday"]
        },
        "createdAt": "2026-04-20T10:00:00.000Z"
      }
    ]
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Invalid API key"
  }
  ```

  ```json 403 theme={null}
  {
    "error": "No companies found. Create a company first using the create_company tool."
  }
  ```
</ResponseExample>
