> ## 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.

# For AI Agents

> Single entry point for AI agents: MCP server, machine-readable catalogs, OpenAPI specs, and raw Markdown access.

This page is the map. If you are an AI agent (or building one), everything you need to
discover and consume CryptoQuant data is listed here.

## Query data directly — MCP server

```text theme={null}
https://mcp.cryptoquant.com/mcp
```

Connect via Claude.ai connectors, Claude Desktop, Claude Code, or Cursor — setup in the
[MCP guide](/guides/mcp-server). Supports API-key auth (dedicated rate limit) or keyless
(shared pool). 245+ metrics across BTC, ETH, TRX, XRP, Stablecoin, ERC20, ALT.

## Discover what exists — machine-readable catalogs

| Resource                                                 | What it contains                                                                                                                |
| -------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| [`/catalog/catalog.json`](/catalog/catalog.json)         | Every v1 and v2 metric: category, endpoint path, parameters, response field names, and a `docs` path to the page documenting it |
| [`/legacy-redirect-map.json`](/legacy-redirect-map.json) | Mapping from legacy `cryptoquant.com/docs#operation/...` anchors to pages on this site                                          |
| [`/openapi/v1.json`](/openapi/v1.json)                   | Full v1 OpenAPI 3.0 spec — 242 endpoints with schemas and examples                                                              |
| [`/openapi/v2.json`](/openapi/v2.json)                   | v2 (beta) OpenAPI spec — curated research indicators                                                                            |
| `/llms.txt` · `/llms-full.txt`                           | Index and full content of this documentation                                                                                    |

## Read any page as Markdown

Append `.md` to any page URL:

```text theme={null}
GET /v2/community/bitcoin-mvrv-z-score.md
```

## Understand what the numbers mean

Raw data without context produces bad analysis. Use these alongside the endpoints:

* **[v2 Metric Guides](/v2/catalog)** — per-metric interpretation: what it measures, key
  thresholds, and how to combine signals (e.g. MVRV Z-score below its 365-day MA =
  high-conviction bear signal).
* **[Data Guide](/data-guide/exchange)** — definitions, formulas, and interpretation for
  every v1 metric family (exchange flows, SOPR, MVRV, CDD, ...).
* **[Glossary](/guides/glossary)** — one-line, answer-first definitions of every key metric
  with formulas and links.
* **[FAQ](/guides/faq)** — common questions on auth, rate limits, data freshness, response
  format, and MCP.
* **[Time Convention](/guides/time-convention)** — how `window`, `from`, `to` behave, and
  when end-of-day data becomes final (UTC 01:00).

## Call the API

* Base URLs: `https://api.cryptoquant.com/v1/` · `https://api.cryptoquant.com/v2/` (beta)
* [Authentication](/guides/authentication): `Authorization: Bearer {access_token}`
* Every response: `{ "status": { "code", "message" }, "result": { "window", "data": [...] } }`
* [Status & error codes](/guides/status-codes) — `429` means back off; rate limits are per-plan.
