GET
/
statistics
/
sequences
/
{sequenceId}
/
clicks
Sequence Clicks
curl --request GET \
  --url https://api.reply.io/v3/statistics/sequences/{sequenceId}/clicks \
  --header 'X-API-Key: <api-key>'
{
  "sequenceId": 123,
  "stepClicks": [
    {
      "stepId": 1,
      "links": [
        {
          "textToDisplay": "Click here",
          "title": "Welcome Link",
          "url": "https://example.com/welcome",
          "clicks": 10,
          "lastClickDate": "2025-03-15T10:27:00Z"
        },
        {
          "textToDisplay": "Learn more",
          "title": "Learn more about our services",
          "url": "https://example.com/learn",
          "clicks": 5,
          "lastClickDate": "2025-03-15T12:40:00Z"
        }
      ]
    },
    {
      "stepId": 2,
      "links": []
    }
  ]
}

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

stepClicks
object[]