Developers
Build with the
LinkForge API
Integrate link management into your applications with our powerful REST API, SDKs, and webhooks.
// Create a short link
const response = await fetch('https://api.linkforge.com/v1/links', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://example.com/long-url',
domain: 'lnk.fg',
title: 'My Campaign Link'
})
});
const link = await response.json();
console.log(link.short_url); // https://lnk.fg/abc123REST API
Full-featured REST API for creating, managing, and tracking links programmatically.
Webhooks
Receive real-time notifications when links are clicked or QR codes are scanned.
API Keys
Secure API key management with granular permissions and rate limiting.
SDKs
Official SDKs for JavaScript, Python, Ruby, Go, and more.
Official SDKs
Get started quickly with our official SDKs for popular languages.
JavaScript
Python
Ruby
Go
PHP
Java