Docs

Reference for operating affiliate links at scale.

Guides, API reference and integration recipes for Tracklume. Set up a project, ship snippets, and wire up routing without leaving your editor.

Getting started

Create a workspace, your first project, and a branded /go/ link in under five minutes.

  • Create a workspace
  • Add a project
  • Publish your first /go/ link

Links & offers

How slugs, offers, fallbacks and disclosure labels work together.

  • Slug structure
  • Offer library
  • Fallback destinations

Routing rules

Geo, device and campaign routing with priority ordering.

  • Country rules
  • Device rules
  • Priority & fallback

Snippets & embeds

Drop-in code for React, plain HTML, JS, Webflow, WordPress and YouTube descriptions.

  • React component
  • Webflow embed
  • WordPress plugin

API & webhooks

REST endpoints for links, clicks and offer sync. Webhooks for broken-link alerts.

  • Authentication
  • Links API
  • Click events

Security & roles

Workspace roles, per-project collaborators, SSO and audit trail.

  • Roles & permissions
  • Two-factor
  • Audit log

API access

REST endpoints for links, clicks and offers. Personal access tokens scoped to a workspace.

curl https://api.tracklume.com/v1/links \
  -H "Authorization: Bearer $TRACKLUME_TOKEN"

Webhooks

Receive events when a link breaks, a routing rule fires or a click comes from a new country.

POST /your-endpoint
{
  "event": "link.broken",
  "link_id": "lnk_...",
  "status": 404
}