Developer-First URL Shortener

Shorten URLs, track clicks, generate QR codes โ€” all via a simple REST API. No signup forms, just an API key.

Get Your API Key โ†’
โšก

Instant API Access

One POST request to get your API key. No email, no OAuth, no friction.

๐Ÿ“Š

Click Analytics

Track total clicks, unique visitors, daily trends, and top referrers.

๐Ÿ“ฑ

QR Codes

Auto-generated QR codes for every link. PNG or SVG, any size.

๐Ÿ”’

Password Protection

Optionally protect links with a password. Great for private shares.

โฐ

Expiring Links

Set TTL on links โ€” perfect for time-limited offers or temp shares.

๐Ÿท๏ธ

Custom Codes

Choose your own short codes (Pro). links.alldevbox.com/my-brand

Try It Now

Your short link:

QR: Download QR Code

API Reference

Base URL: https://links.alldevbox.com/api ยท Auth: X-API-Key header

POST/api/keys โ€” Get an API key
# Get your free API key
curl -X POST https://links.alldevbox.com/api/keys \
  -H "Content-Type: application/json" \
  -d '{"name": "my-app"}'

# Response:
{ "api_key": "sl_abc123...", "tier": "free" }
POST/api/links โ€” Shorten a URL
# Shorten a URL
curl -X POST https://links.alldevbox.com/api/links \
  -H "Content-Type: application/json" \
  -H "X-API-Key: sl_abc123..." \
  -d '{"url": "https://example.com/very/long/path", "title": "My Link"}'

# Optional: custom_code, expires_in (seconds), password
GET/api/links โ€” List your links
GET/api/links/:code/stats โ€” Click analytics
GET/api/qr/:code โ€” QR code (PNG/SVG)
DELETE/api/links/:code โ€” Delete a link

Pricing

Free

ยฃ0
  • 100 links/month
  • Basic click analytics
  • QR code generation
  • Password protection
  • Expiring links

Business

ยฃ12 /month
  • 50,000 links/month
  • Full analytics + exports
  • Custom short codes
  • Bulk API operations
  • Dedicated support