SDKs
The LinkLane API is plain REST + JSON, so any HTTP client works today.
curl -X POST https://api.linklane.io/api/links \
-H "Authorization: Bearer ll_live_xxx" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com"}'
import httpx
httpx.post(
"https://api.linklane.io/api/links",
headers={"Authorization": "Bearer ll_live_xxx"},
json={"url": "https://example.com"},
)
Roadmap
Official TypeScript and Python SDKs are planned. Want one sooner, or a language we haven't listed? Let us know via the dashboard.