PelekaPeleka Developers
API ReferenceAnalytics

Get the most-clicked links across broadcasts, paginated

GET
/api/v1/analytics/broadcasts/top-links
X-API-Key<token>

In: header

Query Parameters

startDate?string
endDate?string
page?number
perPage?number

Response Body

application/json

curl -X GET "https://example.com/api/v1/analytics/broadcasts/top-links"
{  "total": 42,  "page": 1,  "perPage": 10,  "items": [    {      "url": "https://example.com/sale",      "clicks": 2100,      "uniqueClicks": 1850,      "broadcastId": "uuid",      "broadcast": "Flash Sale Alert"    }  ]}