Skip to main content
Affixo exposes a REST API for managing your affiliate program and recording conversions server-to-server, plus an MCP server for AI-native program management.

Base URL

https://go.affixo.dev

Token families

Workspace keys

sa_live_… — full program access, scoped by read / write / track. Power the management and tracking endpoints.

Affiliate keys

refa_live_… — read-only, return only the calling affiliate’s own data. Power the /v1/affiliate/* endpoints.
See Authentication for how to send tokens and which scopes each endpoint needs.

Quickstart

curl https://go.affixo.dev/v1/affiliates \
  -H "Authorization: Bearer sa_live_your_key"
{
  "object": "list",
  "resource": "affiliates",
  "limit": 50,
  "offset": 0,
  "data": [
    { "id": "…", "ref_code": "jane", "email": "jane@example.com", "status": "active" }
  ]
}

Rate limits

600 requests per minute per key, enforced at the edge.