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
| Param | Type | Default | Description |
|---|---|---|---|
period | string | 7d | Time range: 24h, 7d, 30d, 90d, all |
groupBy | string | day | Grouping: 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
| Metric | Description |
|---|---|
| Total Clicks | Every click event, including repeat visits |
| Unique Clicks | De-duplicated by visitor fingerprint |
| Referrer | The source URL that sent the visitor |
| Country | Geographic location via IP geolocation |
| Device Type | Mobile, desktop, or tablet |
| Browser | Chrome, Safari, Firefox, etc. |
| Timestamp | Exact 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:
- Click trend charts: Line and bar graphs over customizable time periods
- Geographic heatmap: Visual map showing where clicks originate
- Referrer breakdown: Pie chart of traffic sources
- Device split: Mobile vs. desktop vs. tablet distribution
- Real-time feed: Live stream of clicks as they happen