/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/cryptovolume-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptovolume-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptovolume-api/v1/meta");
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/cryptovolume-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"quotes": [
"USDT",
"BTC",
"ETH",
"USDC",
"FDUSD"
],
"source": "Binance v3 24h ticker (live)",
"service": "cryptovolume-api",
"endpoints": {
"GET /v1/top": "Most-traded pairs by 24h volume (quote=USDT|BTC|ETH|USDC, limit).",
"GET /v1/meta": "This document.",
"GET /v1/pair": "A single pair's 24h stats (symbol=BTCUSDT)."
},
"usdt_pairs": 664,
"description": "Live most-traded crypto pairs by 24h spot volume on Binance: pairs ranked by 24h quote volume (where the liquidity is) with last price, daily change, 24h high/low, base and quote volume and trade count. Rank by quote currency (USDT/BTC/ETH/USDC) or look one pair up. Live, no key. Distinct from price-change movers and DEX-volume APIs — this is centralised-exchange spot trading volume."
},
"meta": {
"timestamp": "2026-06-09T03:02:04.711Z",
"request_id": "ce40c1d6-ad83-46d1-b45d-01e43cbeba39"
},
"status": "ok",
"message": "Meta",
"success": true
}