Developer Reference
LinkForge REST API Reference
Standard REST endpoints returning JSON with predictable HTTP status codes, bearer token authorization, and sub-10ms edge caching.
Base URL
https://api.linkforge.bio/api/v1
Authentication
Authorization: Bearer lf_live_...
Rate Limit
1,000 req/min (Pro)
Available Endpoints
GET/api/v1/links
List all creator links with click counts and status
curl -X GET "https://api.linkforge.bio/api/v1/links" \
-H "Authorization: Bearer lf_live_your_api_key" \
-H "Content-Type: application/json"Response JSON (200 OK)
{
"success": true,
"data": [
{
"id": "lnk_9f8a3c2b",
"publicId": "portfolio",
"title": "Design Portfolio 2026",
"url": "https://myportfolio.design",
"position": 0,
"counts": 1420,
"isActive": true
}
]
}