GET
/
v4
/
sequences
/
{id}
/
contacts
List contacts in sequence
curl --request GET \
  --url https://api.reply.io/v4/sequences/{id}/contacts \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "contactId": 12345,
      "sequenceId": 100,
      "email": "john.doe@company.com",
      "firstName": "John",
      "lastName": "Doe",
      "company": "Tech Solutions Inc",
      "title": "Senior Product Manager",
      "status": "Active",
      "subStatus": "None",
      "currentStep": 2,
      "addingDate": "2024-03-08T10:00:00+00:00",
      "movingDate": null,
      "nextSendAfter": "2024-03-09T09:00:00+00:00",
      "isOptedOut": false,
      "emailAccountId": 101,
      "linkedInAccountId": null,
      "icpScore": 0.85
    }
  ],
  "hasMore": true
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

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
string

Field name to sort results by

sort_direction
enum<string>

Sort direction (asc or desc)

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

Indicates if there are more items to fetch