# crypto.openverbs.com Historical Token Price Series

> crypto.openverbs.com Historical Token Price Series is a paid API for AI agents from crypto.openverbs.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns an evenly-spaced historical USD price series for a single crypto token over a configurable span and period (hourly, daily, or weekly).

## Facts

- Endpoint: POST https://crypto.openverbs.com/v1/history
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-openverbs-com-historical-token-price-series-c4d9a931
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lupw7GCT9lznGkAnrC0ag

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 crypto-openverbs-com-historical-token-price-series-c4d9a931 -d '<json body>'
```

Example prompt: Can you pull me the daily historical USD prices for Bitcoin (coingecko:bitcoin) for the last 90 days so I can chart the trend?

## When to prefer this

Use this endpoint when you need a time-series of historical USD prices for a single token at a specific granularity (hourly, daily, or weekly) — ideal for charting, backtesting, trend analysis, or volatility calculations. Prefer this over the current-price endpoint when you need more than one data point. Choose coingecko:{slug} for well-known tokens and {chain}:{tokenAddress} for ERC-20 or other on-chain tokens not indexed by name.

## Known failure modes

- Unknown or invalid coin id returns an error (e.g. typo in coingecko slug or unrecognized chain:address)
- span out of range (must be 1–365) returns a validation error
- period value not in allowed enum ('1h','1d','1w') returns a validation error
- Token with insufficient historical data may return fewer points than requested
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting or upstream data provider outage may cause transient 5xx errors

## How this service works

Historical USD price series for one token by coin id (e.g. "coingecko:bitcoin", "ethereum:0xdAC17…"). Returns evenly spaced `points` over the last `span` periods.

## Output

An array of evenly-spaced historical USD price data points for the requested token, covering the specified number of periods (up to 365) at the chosen granularity (hourly, daily, or weekly). Each point includes a timestamp and a USD price value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "coin"
     ],
     "properties": {
      "coin": {
       "type": "string",
       "description": "Coin id: \"coingecko:{slug}\" (e.g. \"coingecko:bitcoin\") or \"{chain}:{tokenAddress}\" (e.g. \"ethereum:0xdAC17F958D2ee523a2206206994597C13D831ec7\")."
      },
      "span": {
       "type": "integer",
       "maximum": 365,
       "minimum": 1,
       "description": "Number of data points to return (default 30)."
      },
      "period": {
       "enum": [
        "1h",
        "1d",
        "1w"
       ],
       "type": "string",
       "description": "Spacing between points: \"1h\", \"1d\" (default) or \"1w\"."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "coingecko:bitcoin",
  "found": true,
  "stale": false,
  "period": "1d",
  "points": [
   {
    "price": 77421.5,
    "timestamp": 1788285050
   }
  ],
  "source": "defillama",
  "symbol": "BTC",
  "decimals": null,
  "confidence": 0.99
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-openverbs-com-historical-token-price-series-c4d9a931/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.openverbs.com](https://www.zero.xyz/host/crypto.openverbs.com/llms.txt)
