Build/Tools/URL Analytics
Utility1 credit / callGET /api/v1/tools/url/expand

URL Analytics

Click stats for short URLs you created

Retrieve click analytics for a short URL created with your API key. Returns total click count, clicks broken down by day, top originating countries, and top referrers. Owner-only — you can only retrieve analytics for URLs you created.

How it works

Looks up the short URL code in the database, verifies ownership (matched by API key), and returns the aggregated analytics.

What you could build

CampaignTrack
A/B test landing pages with per-link click data
$1K–$2K MRR
est. MRR
LinkDash
Campaign analytics dashboard for marketing teams
$2K–$4K MRR
est. MRR

Parameters

coderequired
Short URL code to retrieve analytics for· e.g. apidocs

Example request

curl
curl "https://aplicious.com/api/v1/tools/url/expand?code=apidocs" \
  -H "X-API-Key: YOUR_API_KEY"

Example response

json
{
  "success": true,
  "data": {
    "code": "apidocs",
    "original_url": "https://aplicious.com/docs",
    "click_count": 42,
    "clicks_by_day": {
      "2026-07-06": 18,
      "2026-07-07": 24
    },
    "top_countries": [{ "country": "IN", "clicks": 28 }, { "country": "US", "clicks": 14 }],
    "top_referers": [{ "referer": "direct", "clicks": 30 }],
    "expires_at": "2026-08-07T00:00:00Z"
  }
}
Ready to use URL Analytics?

Free plan — 100 calls/month, no credit card.