A powerful and easy-to-use URL Shortener API
For developers, we offer a robust API for programmatic access:
POST https://link.gadgetfusionlab.com/api.php
Content-Type: application/json
{
"url": "https://your-long-url.com/very-long-path"
}
Our API currently uses open access with rate limiting (100 requests/hour per IP). Future versions may implement API keys.
POST /api.php
Parameter | Type | Required | Description |
---|---|---|---|
url | string | Yes | The long URL you want to shorten |
{
"short_code": "abc123",
"short_url": "https://link.gadgetfusionlab.com/abc123",
"status": "success"
}
HTTP Status | Response | Description |
---|---|---|
400 | {"error": "URL is required"} | Missing URL parameter |
400 | {"error": "Invalid URL"} | Malformed URL provided |
500 | {"error": "Internal server error"} | Server-side issue |
JavaScript Fetch Example:
fetch('https://link.gadgetfusionlab.com/api.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://example.com/very-long-url'
})
})
.then(response => response.json())
.then(data => console.log(data.short_url));