Skip to content
GET /v1/market

Market price, cap and dominance for a chain

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/blockchair-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/blockchair-api/v1/market" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/blockchair-api/v1/market", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/blockchair-api/v1/market");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/blockchair-api/v1/market",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "name": "Ethereum",
        "chain": "ethereum",
        "price_btc": 0.026387528244946,
        "price_usd": 1740.02,
        "market_cap_usd": 209699523103,
        "market_dominance_percentage": 8.94,
        "price_change_24h_percentage": 3.99061
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:27.803Z",
        "request_id": "785d21b1-cb75-4c2f-823e-58e14e3d25aa"
    },
    "status": "ok",
    "message": "Market data retrieved successfully",
    "success": true
}