Gadget Fusion Lab API

A powerful and easy-to-use URL Shortener API

API Access

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"
}

API Documentation

Authentication

Our API currently uses open access with rate limiting (100 requests/hour per IP). Future versions may implement API keys.

Endpoint

POST /api.php

Request Format

Parameter Type Required Description
url string Yes The long URL you want to shorten

Success Response

{
  "short_code": "abc123",
  "short_url": "https://link.gadgetfusionlab.com/abc123",
  "status": "success"
}

Error Responses

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

Example Usage

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));