# CoinStats Exchange Balance Chart

> CoinStats Exchange Balance Chart is a paid API for AI agents from x402.coinstats.app, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns historical balance chart data for a cryptocurrency exchange account over time

## Facts

- Endpoint: POST https://x402.coinstats.app/exchange/chart
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinstats-app-b3b2de0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_65qZ5jUorLHdl0ZKcX9s3

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 x402-coinstats-app-b3b2de0a -d '<json body>'
```

Example prompt: Show me a balance chart for my CoinStats-connected exchange account over the past month — I want to see how my total holdings have changed over time.

## When to prefer this

Use this endpoint when you need historical balance chart data specifically for a cryptocurrency exchange account (e.g. Binance, Coinbase, Kraken) connected via CoinStats, as opposed to a wallet address or shared portfolio. Best when the user wants to visualize how their exchange holdings have changed over a defined time period.

## Known failure modes

- Missing or invalid sharetoken header returns authentication error
- Exchange account not connected or synced returns empty or error response
- Invalid time range parameter causes malformed request error
- Exchange sync not completed may return stale or incomplete data
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Exchange balance chart

## Output

Returns time-series chart data showing historical balance values for a connected exchange account, including timestamps and corresponding USD portfolio values at each data point, suitable for rendering a balance-over-time chart.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "type"
 ],
 "properties": {
  "type": {
   "enum": [
    "24h",
    "1w",
    "1m",
    "3m",
    "6m",
    "1y",
    "all"
   ],
   "type": "string",
   "description": "Time period for the data"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinstats-app-b3b2de0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinstats.app](https://www.zero.xyz/host/x402.coinstats.app/llms.txt)
