v1

latestOpenAPI 3.1.02026-07-2414238909.1 KB

Get paged analytics

Routee sends paged analytic for a specific shorten URL to monitor the effectiveness of the campaigns

get/shorten/{trackingId}/analytics

Path parameters

trackingIdstring required

Query parameters

fromstring required

Start date for analytics report

tostring required

End date for analytics report

pagestring

[Optional] Index for results (0 is first result)

sizestring

[Optional] Number of results per page (Default 20 max according to capability)

Headers

Authorizationstring required

Bearer: {access_token}

Content-Typestring required

application/json

Request body

linkstring

The shortened URL

longUrlstring

The original URL

tagsstring

A map of string field values to store information

Response

200

linkstring
longUrlstring

Example response

{
  "link": "https://giota.com/0000er",
  "longUrl": "https://www.somereallybigurlthisisnottobigbutok.com",
  "visits": {
    "first": true,
    "last": true,
    "size": 20
  },
  "tags": {
    "tag1": "value1",
    "tag2": "value2"
  }
}