/v1/meta
Spec
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/cryptocom-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptocom-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptocom-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/cryptocom-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Spot markets are BASE_QUOTE (e.g. BTC_USD); perpetuals are excluded. volume_quote_24h is the 24h volume in the quote currency.",
"source": "Crypto.com Exchange API (api.crypto.com/exchange/v1/public, live)",
"service": "cryptocom-api",
"endpoints": {
"GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_USD, depth=20).",
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one spot market (market=BTC_USD or symbol=BTC"e=USD).",
"GET /v1/tickers": "All spot markets for a quote ranked by 24h quote volume (quote=USD, limit=50).",
"GET /v1/instruments": "Tradable spot pairs with tick sizes (quote=USD optional)."
},
"description": "Live spot market data from the Crypto.com Exchange, one of the largest global retail crypto venues (the CRO ecosystem). The ticker endpoint returns a market's last price, best bid/ask, 24h high/low, 24h change and base/quote volume; the tickers endpoint ranks every spot market for a quote currency by 24h quote volume; the instruments endpoint lists tradable spot pairs with tick sizes and precision; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
"upstream_status": "ok",
"spot_market_count": 591
},
"meta": {
"timestamp": "2026-06-11T07:49:27.820Z",
"request_id": "ffd74c08-da1b-4700-b459-a7fe4a868931"
},
"status": "ok",
"message": "Meta",
"success": true
}