Skip to main content
GET
/
v3
/
sequences
/
{id}
/
contacts
List contacts in sequence
curl --request GET \
  --url https://api.reply.io/v3/sequences/{id}/contacts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "contactId": 12345,
      "sequenceId": 100,
      "email": "john.doe@company.com",
      "firstName": "John",
      "lastName": "Doe",
      "company": "Tech Solutions Inc",
      "title": "Senior Product Manager",
      "statusInSequence": "active",
      "isOptedOut": false,
      "callStatus": "none",
      "meetingStatus": "none",
      "emailDisposition": {
        "isReplied": false,
        "isBounced": false
      },
      "currentStep": {
        "stepId": 5421,
        "displayName": "2"
      },
      "addingDate": "2024-03-08T10:00:00+00:00",
      "emailAccountId": 101,
      "linkedInAccountId": null
    }
  ],
  "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.

Path Parameters

id
integer
required

Sequence ID

Query Parameters

top
integer

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

skip
integer

Number of items to skip

sort_by
enum<string>

Field name to sort results by. Each value matches the corresponding response field. When omitted, results are ordered most-recently-added first.

Available options:
addingDate,
email,
firstName,
lastName,
company,
statusInSequence
sort_direction
enum<string>

Sort direction (asc or desc). Defaults to desc when sort_by is provided.

Available options:
asc,
desc

Response

List of contacts in sequence

Response model for listing contacts in a sequence with pagination

items
Sequence Contact · object[]

Array of sequence contact items

hasMore
boolean
read-only

Indicates if there are more items to fetch