GET
/
statistics
/
sequences
/
{sequenceId}
Sequence
curl --request GET \
  --url https://api.reply.io/v3/statistics/sequences/{sequenceId} \
  --header 'X-API-Key: <api-key>'
{
  "sequenceId": 123,
  "sequenceName": "Welcome Sequence",
  "deliveredContacts": 50,
  "repliedContacts": 5,
  "interestedContacts": 5,
  "replyRate": 12,
  "deliveryRate": 98,
  "interestedRate": 4
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

sequenceId
integer
required

The ID of the sequence

Response

200 - application/json

Successful response

sequenceId
integer
required

(Required) The ID of the sequence

sequenceName
string

The name of the sequence

deliveredContacts
integer

The number of contacts who received at least one email

repliedContacts
integer

The number of contacts who replied to the sequence

interestedContacts
integer

The number of contacts marked as interested

replyRate
number

The overall reply rate (percentage)

deliveryRate
number

The overall delivery rate (percentage)

interestedRate
number

The overall interested rate (percentage)