Powered by Shortme.at

Redirecting...

Please wait while we take you to your link.

🎉 Enjoy! Just free plan for now — no credit card required.

The universal link shortener

Shorten URLs, share files, and track everything.

Drag & Drop your file here or Click to Browse

Max 10MB

Simple Pricing

Free

$0 /month
  • 10 Links / day
  • 30 Days Expiry
  • Standard QR
Get Started

Business

$9.99 /month
  • API Access
  • Webhooks
  • Smart Routing
  • A/B Testing
  • Priority Support
Coming Soon

Built for Developers

Integrate Shortme directly into your applications. Our robust API allows for programmatic link creation, management, and analytics.

View Full Documentation →
Python JavaScript cURL
import requests

api_key = "YOUR_API_KEY"
url = "https://api.shortme.at/create"

payload = {
    "url": "https://mysite.com/long-url"
}

response = requests.post(
    url, 
    json=payload, 
    headers={"X-Api-Key": api_key}
)

print(response.json())
# {'short_url': 'https://shortme.at/xYz12'}