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

# Authentication

> Get an API token to access Equated.

Equated uses API tokens for authentication. Each token can read and write data across your organization.

```bash theme={null}
curl https://app.equated.co/api/transactions \
  -H "Authorization: Bearer int_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
```

## Get a token

Create tokens in the Equated app under **Settings → AI Agents**. Tokens are shown once when created.

<Note>
  API tokens are scoped to your organization. Treat them like passwords.
</Note>

## What tokens can do

API tokens can call any public API documented in the API Reference.

Tokens cannot create, list, or delete other tokens. Only signed-in users in the web app can manage tokens.

## Who did what

When a token performs an action, Equated durably records which token made it, when, and with what result. Agent work stays attributable and auditable, separate from changes people make in the app.

## Use your token

Pass your token with every API request:

```bash theme={null}
Authorization: Bearer <your-token>
```
