Skip to main content
GET
/
v1
/
short-links
/
{id}
/
clicks
Listar cliques (eventos)
curl --request GET \
  --url https://api.notifique.dev/v1/short-links/{id}/clicks \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "clclick01exampleid0001",
      "shortLinkId": "clshort01exampleid0001",
      "workspaceId": "clws_example_workspace01",
      "clickedAt": "2026-04-20T12:01:00.000Z",
      "ipRaw": null,
      "ipHash": "sha256:deadbeef...",
      "userAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X)",
      "referrer": "https://t.co/xyz",
      "utmSource": "twitter",
      "utmMedium": "social",
      "utmCampaign": "launch2026",
      "country": "BR",
      "region": "SP",
      "city": "São Paulo",
      "deviceType": "mobile",
      "osFamily": "iOS",
      "browserFamily": "Mobile Safari"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 50,
    "total": 128,
    "totalPages": 3
  }
}

Authorizations

Authorization
string
header
required

API Key no header Authorization. Exemplo: Authorization: Bearer sk_live_xxxxx

Path Parameters

id
string
required

ID (cuid) do link.

Query Parameters

page
string

Página (padrão 1, máx. conforme motor de paginação).

limit
string

Itens por página (padrão 20, máx. 100).

Response

Lista paginada de eventos de clique.

success
boolean
required
Example:

true

data
object[]
required
pagination
object
required