Sign in

Analytics

Every click on an Auva Go short link is tracked in real-time. Access analytics through the dashboard or the API.


Get Link Analytics

text
GET https://go.auva.dev/api/links/{id}/analytics
Authorization: Bearer YOUR_ACCESS_TOKEN

Query Parameters

ParamTypeDefaultDescription
periodstring7dTime range: 24h, 7d, 30d, 90d, all
groupBystringdayGrouping: hour, day, week, month

Response:

text
{
  "linkId": "lnk_abc123",
  "totalClicks": 1420,
  "uniqueClicks": 987,
  "period": "7d",
  "timeSeries": [
    { "date": "2024-03-09", "clicks": 180 },
    { "date": "2024-03-10", "clicks": 220 },
    { "date": "2024-03-11", "clicks": 195 }
  ],
  "topReferrers": [
    { "referrer": "twitter.com", "clicks": 340 },
    { "referrer": "linkedin.com", "clicks": 210 },
    { "referrer": "direct", "clicks": 450 }
  ],
  "topCountries": [
    { "country": "US", "clicks": 520 },
    { "country": "EG", "clicks": 310 },
    { "country": "DE", "clicks": 180 }
  ],
  "devices": {
    "mobile": 680,
    "desktop": 620,
    "tablet": 120
  }
}

What We Track

MetricDescription
Total ClicksEvery click event, including repeat visits
Unique ClicksDe-duplicated by visitor fingerprint
ReferrerThe source URL that sent the visitor
CountryGeographic location via IP geolocation
Device TypeMobile, desktop, or tablet
BrowserChrome, Safari, Firefox, etc.
TimestampExact time of each click

Auva Go does not use cookies for tracking. Analytics are powered by request headers and IP geolocation. We respect user privacy.


Dashboard Visualizations

The analytics dashboard at go.auva.dev includes: