Skip to main content
GET
/
v3
/
sequences
List all sequences
curl --request GET \
  --url https://api.reply.io/v3/sequences \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 12345,
      "ownerUserId": 42,
      "name": "Sales Outreach",
      "status": "active",
      "created": "2024-03-08T10:00:00+00:00",
      "isArchived": false,
      "health": "healthy"
    },
    {
      "id": 12346,
      "ownerUserId": 42,
      "name": "Follow-up Campaign",
      "status": "paused",
      "created": "2024-03-07T14:30:00+00:00",
      "isArchived": false,
      "health": "degraded"
    }
  ],
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Query Parameters

top
integer

Maximum number of items to return (default 25, max 1000)

skip
integer

Number of items to skip

status
enum<string>

Filter sequences by status

Available options:
active,
paused,
new
ownerUserId
integer

Filter sequences by owner user ID

folderId
string<uuid>

Filter sequences by folder ID

isArchived
boolean

Filter sequences by archive status. When true, returns only archived sequences. When false, returns only non-archived sequences. When omitted, returns all sequences regardless of archive status.

name
string

Search sequences by name (case-insensitive, partial match)

Response

List of sequences retrieved successfully

Response model for listing sequences with pagination

items
object[]

Array of sequence items

hasMore
boolean

Indicates if there are more items to fetch