GET
/
v4
/
broadcasts
/
{broadcast_id}
/
clicks
curl --request GET \
  --url https://api.kit.com/v4/broadcasts/{broadcast_id}/clicks \
  --header 'X-Kit-Api-Key: <api-key>'
{
  "broadcast": {
    "id": 2703,
    "clicks": [
      {
        "url": "https://example.com/52",
        "unique_clicks": 3,
        "click_to_delivery_rate": 0.006,
        "click_to_open_rate": 0.03
      },
      {
        "url": "https://example.com/53",
        "unique_clicks": 3,
        "click_to_delivery_rate": 0.006,
        "click_to_open_rate": 0.03
      },
      {
        "url": "https://example.com/54",
        "unique_clicks": 3,
        "click_to_delivery_rate": 0.006,
        "click_to_open_rate": 0.03
      }
    ]
  },
  "pagination": {
    "has_previous_page": false,
    "has_next_page": false,
    "start_cursor": "WzM1MF0=",
    "end_cursor": "WzM1MF0=",
    "per_page": 500
  }
}

Authorizations

X-Kit-Api-Key
string
header
required

Authenticate API requests via an API Key

Path Parameters

broadcast_id
integer
required

Response

200
application/json

Returns clicks for a broadcast

The response is of type object.