Skip to main content
GET
/
sequences
/
{id}
/
contacts
/
state
List contacts in sequence with extended state
curl --request GET \
  --url https://api.reply.io/v3/sequences/{id}/contacts/state \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "email": "#####150467348@genmail.com",
      "firstName": "John",
      "lastName": "Doe",
      "title": "Important Client",
      "addedAt": "2025-10-29T10:00:00.00",
      "currentStep": {
        "stepId": 11111111,
        "displayStepNumber": "1",
        "stepNumber": 1
      },
      "lastStepCompletedAt": null,
      "status": {
        "status": "Active",
        "replied": false,
        "delivered": false,
        "bounced": false,
        "opened": false,
        "clicked": false
      }
    }
  ],
  "info": {
    "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 100)

skip
integer

Number of items to skip

additionalColumns
string

Comma-separated list of additional columns to include. Valid values: CurrentStep, LastStepCompletedAt, Status

Response

List of contacts with extended state data

Response model for listing contacts in a sequence with pagination

items
object[]

Array of sequence contact items

info
Iteration Info · object

Pagination information