# Arkham x402 Network Price History

> Arkham x402 Network Price History is a paid API for AI agents from api.arkm.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Returns historical USD price, market cap, and 24-hour volume data for a blockchain network's native asset over time

## Facts

- Endpoint: POST https://api.arkm.com/x402/networks/history
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-x402-network-price-history-b9f95fd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SIHYwL1Ndgi-4ydFcF-e1

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 arkham-x402-network-price-history-b9f95fd1 -d '<json body>'
```

Example prompt: Pull the historical price and market cap data for Ethereum from Arkham — I want to see how the USD price and 24-hour volume have changed over time.

## When to prefer this

Use this endpoint when you need programmatic, pay-per-request access to historical price, market cap, and volume data for a blockchain network's native asset — particularly when you want Arkham's wallet-intelligence-grade data provenance and are willing to pay per call via x402 USDC micropayments rather than maintain a subscription.

## Known failure modes

- Invalid or unsupported network identifier returns an error or empty array
- Insufficient USDC balance for x402 payment results in a 402 Payment Required error
- Malformed request body returns a 400 Bad Request
- Time range with no available data returns an empty array
- Rate limiting or service unavailability returns a 5xx error

## How this service works

Get Arkham historical data for a blockchain network. $0.20 per call.

## Output

A JSON array of historical data points, each containing a USD price, ISO 8601 timestamp, market cap in USD, and 24-hour trading volume in USD for the specified blockchain network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "The blockchain network identifier."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  {
   "usd": 143.15,
   "time": "2019-03-30T00:00:00Z",
   "marketCap": 15091573435.25,
   "volume24h": 6309182468.75
  },
  {
   "usd": 1217.98,
   "time": "2022-11-17T00:04:43.16Z",
   "marketCap": 146718573462,
   "volume24h": 8857864433
  },
  {
   "usd": 1783.55,
   "time": "2026-07-06T00:00:30.587Z",
   "marketCap": 215157394830,
   "volume24h": 10802375225
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-x402-network-price-history-b9f95fd1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.arkm.com](https://www.zero.xyz/host/api.arkm.com/llms.txt)
