# Base Chain Snapshot & Crypto Market Prices

> Base Chain Snapshot & Crypto Market Prices is a paid API for AI agents from baseusdcearn.pythonanywhere.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns live Base mainnet chain data (block height, gas price) combined with real-time BTC, ETH, SOL, and USDC prices with 24h change, paid per-call via x402 USDC on Base.

## Facts

- Endpoint: GET https://baseusdcearn.pythonanywhere.com/chain/base
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-chain-snapshot-crypto-market-prices-147c4088
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CAYYEeAQpJh145kxXbJ-L

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 base-chain-snapshot-crypto-market-prices-147c4088
```

Example prompt: Pull the latest Base mainnet block height and gas price, along with current BTC, ETH, SOL, and USDC prices including their 24-hour change.

## When to prefer this

Choose this endpoint when you need a single low-cost call ($0.001 USDC) that combines Base chain health metrics (block height, gas price) with live spot prices for the top four assets (BTC, ETH, SOL, USDC) in one response. It is ideal for agents already operating on Base mainnet that want to avoid managing API keys, since payment is handled natively via x402 USDC. Prefer alternatives if you need historical data, order book depth, or prices for assets beyond BTC/ETH/SOL/USDC.

## Known failure modes

- HTTP 402 returned if x402 payment header is missing or invalid — agent must pay 0.001 USDC on Base and retry with PAYMENT-SIGNATURE header
- Stale or unavailable OKX market data may result in missing price fields
- Base RPC unavailability could cause chain fields to be missing or outdated
- PythonAnywhere free-tier cold starts may add latency on first call
- No input parameters — endpoint always returns all assets; cannot filter to a single coin

## How this service works

Pay-per-call API for AI agents, settled in USDC on Base mainnet (eip155:8453) via the x402 protocol - no API keys, no signup, no subscription. Live crypto market data: BTC, ETH, SOL, USDC (USD Coin) prices with 24h change (source: OKX), Base mainnet chain snapshot (block height, gas price gwei), real-time USDC-on-Base transfer analytics (transfer count, volume, unique senders and recipients over recent blocks), and USDC/ETH wallet balances plus nonce for any address. Agent utility tools: deterministic JSON repair for LLM output (strip code fences, fix trailing commas, single quotes, unquoted keys, balance braces), DNS A/AAAA lookup, and URL extraction from arbitrary text. Every endpoint returns HTTP 402 with an x402 payment challenge in USDC on Base; pay with any wallet and retry with the PAYMENT-SIGNATURE header. MCP server at /mcp (streamable HTTP, 6 pay-per-call tools). Ideal for crypto portfolios, DeFi dashboards, market analysis agents, data pipelines, and LLM post-processing.

## Output

A JSON object with a 'chain' object (chainId 8453, network name, current block height, gas price in gwei), a 'market' object (BTC, ETH, SOL, USDC prices in USD and 24h % change sourced from OKX), and a 'servedAt' Unix timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": {
   "chainId": 8453,
   "network": "base-mainnet",
   "blockHeight": 21000000,
   "gasPriceGwei": 0.05
  },
  "market": {
   "solana": {
    "usd": 150,
    "usd_24h_change": -0.5
   },
   "bitcoin": {
    "usd": 60000,
    "usd_24h_change": 1.5
   },
   "ethereum": {
    "usd": 3000,
    "usd_24h_change": 2
   },
   "usd-coin": {
    "usd": 1,
    "usd_24h_change": 0
   }
  },
  "servedAt": 1755430000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-chain-snapshot-crypto-market-prices-147c4088/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from baseusdcearn.pythonanywhere.com](https://www.zero.xyz/host/baseusdcearn.pythonanywhere.com/llms.txt)
