Real crypto market data in one batched call: price, market cap, market-cap rank, 24h volum
Real crypto market data in one batched call: price, market cap, market-cap rank, 24h volume/high/low/change, circulating/total/max supply, and all-time-high with date -- for BTC, ETH, SOL, and 17+ other major coins by ticker. Richer than a plain price feed: most stock-data APIs' crypto tickers report null market cap. From CoinGecko. $0.005/call.
5000 (raw units)
price
4
calls / 30d
4
unique payers
2026-09-17
updated
Provider
www.x402financialdata.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xe4181c7de066959bcca010525304ba68a84768e0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "FTwh34f9yBgdD2ydjQUqHnZGRtQsHMHaRm8w2hpcB79L",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"symbols": "BTC,ETH,SOL"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-07-30",
"coins": [
{
"ath": 126080,
"ath_change_pct": -49.1701,
"ath_date": "2025-10-06T10:57:42.000Z",
"change_24h": 253.14,
"change_24h_pct": 0.7,
"circulating_supply": 20063068,
"coingecko_id": "bitcoin",
"high_24h": 64660,
"last_updated": "2026-07-30T03:40:20.000Z",
"low_24h": 63247,
"market_cap": 1285707905419,
"market_cap_rank": 1,
"max_supply": 21000000,
"name": "Bitcoin",
"price": 64086,
"symbol": "BTC",
"total_supply": 20063103,
"volume_24h": 28246728640
}
],
"errors": [],
"source": "coingecko",
"vs_currency": "usd"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"symbols": {
"description": "Comma-separated ticker symbols, e.g. BTC,ETH,SOL",
"type": "string"
}
},
"required": [
"symbols"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"a": "bc_vyd5u8m3"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://www.x402financialdata.com/crypto-prices" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://www.x402financialdata.com/crypto-prices");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://www.x402financialdata.com/crypto-prices")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4569.json, and this resource appears in /discovery/resources and /discovery/search.