# Alchemy Historical Token Price Data

> Alchemy Historical Token Price Data is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns historical price data for cryptocurrency tokens supported by the Alchemy platform.

## Facts

- Endpoint: POST https://stablecrypto.dev/api/alchemy/prices/historical
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecrypto-dev-77293345
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1b1ODoKf8xTjiAzZKP_hH

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 stablecrypto-dev-77293345 -d '<json body>'
```

Example prompt: Can you pull the historical price data for ETH and WBTC from Alchemy for the past 90 days so I can see how they trended?

## When to prefer this

Use this endpoint when you need historical price data specifically for tokens supported by Alchemy, such as ETH and major ERC-20s, and want time-series pricing rather than current spot prices. Prefer this over DeFiLlama endpoints if you want Alchemy's curated asset coverage.

## Known failure modes

- Token not supported by Alchemy returns an error or empty result
- Invalid date range causes a 400 bad request
- Unsupported network or asset symbol returns no data
- Malformed request body causes parsing error
- Service outage or upstream Alchemy API failure returns 5xx

## How this service works

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

## Output

Returns a time-series dataset of historical token prices for the requested Alchemy-supported asset, including timestamps and price values in a structured format.

## Example request

```json
{
 "symbol": "ETH",
 "endTime": "2024-12-01T00:00:00Z",
 "network": "eth-mainnet",
 "interval": "1d",
 "startTime": "2024-09-01T00:00:00Z"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Token symbol"
  },
  "endTime": {
   "type": "string",
   "description": "ISO 8601 end time"
  },
  "network": {
   "type": "string",
   "description": "Alchemy network slug, e.g. eth-mainnet, base-mainnet"
  },
  "interval": {
   "type": "string",
   "description": "Time interval (e.g. 5m, 1h, 1d)"
  },
  "startTime": {
   "type": "string",
   "description": "ISO 8601 start time"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecrypto-dev-77293345/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)
