Skip to main content

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 (400 validation, 401 auth, 402 plan required, 404 not found, 429 rate limited).
  • Rate limits apply per API key (default 100 requests/minute).
  • Plan gating — some endpoints require Pro+ and return 402 otherwise.

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.