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

# Rate Limits

> Daily token limits and usage quotas for the EURI API.

## Daily token limits

EURI enforces daily token limits that reset at midnight UTC.

| User type       | Daily token limit |
| --------------- | ----------------- |
| Free user       | 10,000 tokens     |
| Euron Plus user | 100,000 tokens    |

These limits apply to **non-premium models** (models where `premium: false`). Premium models consume wallet balance instead of the daily quota.

## What counts as tokens?

* **Chat completions**: `prompt_tokens + completion_tokens`
* **Embeddings**: Input tokens
* **Image generation**: Flat token equivalent per image
* **Audio**: Token equivalent based on duration/characters

## When you hit the limit

You'll receive a `403 Forbidden` response:

```json theme={null}
{
  "error": {
    "message": "Daily token limit of 10000 reached. Please try again tomorrow or add funds to your wallet.",
    "type": "forbidden_error",
    "code": "token_limit_exceeded"
  }
}
```

## Increasing your limit

1. **Upgrade to Euron Plus** — 10x the daily limit (100,000 tokens/day).
2. **Add wallet balance** — Premium models bypass the daily limit entirely; usage is deducted from your wallet.
