> ## Documentation Index
> Fetch the complete documentation index at: https://docs.affixo.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> The Affixo API for affiliate program management and conversion tracking.

Affixo exposes a REST API for managing your affiliate program and recording
conversions server-to-server, plus an [MCP server](/mcp) for AI-native program
management.

## Base URL

```
https://go.affixo.dev
```

## Token families

<CardGroup cols={2}>
  <Card title="Workspace keys" icon="key">
    `sa_live_…` — full program access, scoped by `read` / `write` / `track`.
    Power the management and tracking endpoints.
  </Card>

  <Card title="Affiliate keys" icon="user">
    `refa_live_…` — read-only, return **only the calling affiliate's own data**.
    Power the `/v1/affiliate/*` endpoints.
  </Card>
</CardGroup>

See [Authentication](/authentication) for how to send tokens and which scopes
each endpoint needs.

## Quickstart

```bash theme={null}
curl https://go.affixo.dev/v1/affiliates \
  -H "Authorization: Bearer sa_live_your_key"
```

```json theme={null}
{
  "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.
