Please wait while we take you to your link.
Shorten URLs, share files, and track everything.
Integrate Shortme directly into your applications. Our robust API allows for programmatic link creation, management, and analytics.
View Full Documentation →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'}