# CoinStats Single-Coin Price Chart

> CoinStats Single-Coin Price Chart is a paid API for AI agents from x402.coinstats.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a time-series price chart for a single cryptocurrency over a chosen time range (24h, 1w, 1m, 1y, or all-time)

## Facts

- Endpoint: GET https://x402.coinstats.app/coins/:coinId/charts
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinstats-app-84abf669
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3uh4Wu9cVGp0-CC264Hiw

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-84abf669
```

Example prompt: Can you pull up the CoinStats price chart for Bitcoin over the last month so I can see how it's been trending?

## When to prefer this

Use this endpoint when you need historical price chart data for a single specific cryptocurrency and want structured time-series output. Prefer this over a full coin list endpoint when you already know the coinId and only need price history, not current live market data. Best for charting, trend analysis, or building price visualizations for a specific asset.

## Known failure modes

- Invalid or unknown coinId returns 404 or empty result
- Unsupported time range parameter returns an error or defaults
- Payment not included or insufficient causes 402 Payment Required
- Rate limiting may occur with excessive requests
- Network timeout if CoinStats upstream is slow

## How this service works

CoinStats price chart for a single cryptocurrency — time series over 24h/1w/1m/1y/all

## Output

An array of time-series data points representing the price of the specified cryptocurrency over the requested time window (24h, 1w, 1m, 1y, or all-time), including timestamps and corresponding price values in USD or base currency.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinstats-app-84abf669/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)
