Skip to main content
GET
/
sequences
/
{id}
/
contacts
/
extended
List contacts in sequence (extended)
curl --request GET \
  --url https://api.reply.io/v3/sequences/{id}/contacts/extended \
  --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

Required range: 1 <= x <= 100
skip
integer

Number of items to skip

additionalColumns
string

Comma-separated list of additional contact columns to include in the response

Example:

"CurrentStep,LastStepCompletedAt,Status"

Response

List of contacts in sequence

Response model for listing contacts in a sequence with pagination

items
object[]

Array of sequence contact items

info
object

Pagination information