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

# Errors

> Authentication and lookup errors returned by the Indicator API.

The Indicator API uses the same top-level `status` envelope pattern as the core CryptoQuant APIs.

## Missing API key

```json theme={null}
{
  "status": {
    "code": 401,
    "message": "authentication required",
    "description": "Pass a CryptoQuant API key with Authorization: Bearer <YOUR_API_KEY>. CryptoQuant Pro plan or higher is required."
  }
}
```

## Invalid API key

```json theme={null}
{
  "status": {
    "code": 401,
    "message": "invalid_api_key",
    "description": "A valid CryptoQuant API key is required."
  }
}
```

## Plan below Pro

```json theme={null}
{
  "status": {
    "code": 403,
    "message": "pro_plan_required",
    "description": "CryptoQuant Pro plan or higher is required."
  }
}
```

## Unknown equity

```json theme={null}
{
  "status": {
    "code": 404,
    "message": "unknown equity"
  }
}
```

## Unknown metric

```json theme={null}
{
  "status": {
    "code": 404,
    "message": "unknown metric"
  }
}
```
