U
URL Shortener API
Shorten, track, and manage URLs at scale
Shorten URLs with click tracking, custom aliases, and expiration. Includes bulk shortening and QR code generation.
Developer Tools5 endpoints
Endpoints
POST
/shortenCreate short URL
GET
/resolve/{code}Resolve short URL to original
GET
/stats/{code}Get click stats
POST
/bulkShorten up to 10 URLs
Use Cases
Marketing campaigns
Link tracking
SMS links
Social media
Affiliate links
Quick Start
quickstart.js
const response = await fetch(
"https://url-shortener-by-helix-api.p.rapidapi.com/shorten",
{
method: "POST",
headers: {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "url-shortener-by-helix-api.p.rapidapi.com"
}
}
);
const data = await response.json();
console.log(data);