API overview
The LinkLane REST API lets you create and manage links, read analytics, and run bulk operations programmatically.
- Base URL:
https://api.linklane.io/api - Format: JSON request + response bodies.
- Auth: scoped API keys (Pro and above) via a Bearer token — see Authentication.
- IDs: every resource uses a string
id(UUID v4).
Example request
curl https://api.linklane.io/api/links \
-H "Authorization: Bearer ll_live_xxx"
Conventions
- Errors return a JSON body
{ "detail": "…" }with a standard HTTP status (400validation,401auth,402plan required,404not found,429rate limited). - Rate limits apply per API key (default 100 requests/minute).
- Plan gating — some endpoints require Pro+ and return
402otherwise.
Resources (reference coming in P3)
Links · Analytics · Bulk · Campaigns · Domains · Webhooks · Integrations.
Full endpoint-by-endpoint reference + SDKs land in the developer-docs phase. Start with Authentication.