/api/v6/urlshortener/links/{domain}/{code}/statsLink statistics
Totals, time series and breakdowns by country, device or referrer.
Scope and limits
API key with the urlshortener service enabled
120 requests per minute
- Hourly granularity is only available for ranges of 31 days or less, within the last 90 days.
Click analytics for one link: totals, a time series and top-N breakdowns by dimension. Day and hour buckets are computed in America/Bogota.
uniqueClicks summed over a multi-day range is an approximation: uniques are deduplicated per day.
Path parameters
domaincodeQuery parameters
rangefrom or to.last_24hlast_7dlast_30dlast_90dthis_monthlast_monthytdall_timeDefault: last_30d
fromtogranularityhourdaydimensionscountry, subdivision, city, device, os, browser, referrer.Responses
Link analytics.
{
"success": true,
"data": {
"code": "a1b2c3d",
"domain": "go.acme.co",
"range": {
"from": "2026-05-03T00:00:00-05:00",
"to": "2026-06-01T18:30:00-05:00",
"granularity": "day"
},
"totals": {
"clicks": 128,
"uniqueClicks": 96,
"firstClickAt": "2026-05-04T12:00:00Z",
"lastClickAt": "2026-06-01T18:22:10Z"
},
"series": [{ "ts": "2026-05-04", "clicks": 40, "uniqueClicks": 31 }],
"breakdowns": {
"country": [{ "key": "CO", "clicks": 90 }, { "key": "__other", "clicks": 38 }],
"device": [{ "key": "mobile", "clicks": 110 }]
}
},
"meta": {
"requestId": "8f0c0e2a4b1d4c8fae2b7a91e0c5d3f6",
"timestamp": "2026-06-01T18:30:00+00:00",
"responseTimeMs": 9.4
}
}Invalid range or granularity.
Invalid or missing credentials.
No link with that domain and code.
Request limit exceeded.
Possible errors
Codes this endpoint can return in error.code. The full detail lives in the catalog.
AUTH_REQUIREDNo Bearer token was sent, and every call requires one.401AUTH_INVALID_KEYThe API key is not recognized: wrong format, revoked or expired.401AUTH_SERVICE_NOT_ALLOWEDThe key is not allowed to use the service behind this endpoint.400STATS_RANGE_INVALIDThe stats range or granularity is invalid.404LINK_NOT_FOUNDNo link with that domain and code.429RATE_TPS_EXCEEDEDYou exceeded your organization quota for this endpoint.