# Exchange Volume Chart

> Exchange Volume Chart is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns historical trading volume data for a specific cryptocurrency exchange over a given number of days

## Facts

- Endpoint: POST https://stablecrypto.dev/api/coingecko/exchange/volume-chart
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/exchange-volume-chart-f766c1a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HR6ID_oe243z26fIuUtub

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability exchange-volume-chart-f766c1a3 -d '<json body>'
```

Example prompt: Can you pull the trading volume history for Binance (exchange ID: binance) over the last 30 days so I can see how volume has trended?

## When to prefer this

Use this endpoint when you need historical trading volume data for a specific centralized or decentralized exchange over a configurable time window. Prefer this over general price endpoints when the user's question is specifically about exchange-level volume trends rather than coin prices or market cap.

## Known failure modes

- Invalid exchange ID returns an error or empty result
- Unsupported or out-of-range 'days' value may return an error
- Exchange not tracked by CoinGecko returns a not-found error
- Network or upstream CoinGecko API downtime causes failure
- Malformed request body missing required fields returns validation error

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

An array of [timestamp, volume] pairs representing the exchange's trading volume at each point in the requested time range, sourced from CoinGecko data.

## Example request

```json
{
 "id": "binance",
 "days": "30"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Exchange ID"
  },
  "days": {
   "type": "string",
   "description": "Data range in days"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/exchange-volume-chart-f766c1a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
