/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/coinmarkets-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinmarkets-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinmarkets-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/coinmarkets-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "coin is a CoinGecko id (bitcoin, ethereum, solana); common tickers (BTC, ETH, SOL…) are mapped automatically. volume_usd is the 24h volume converted to USD. Results are cached briefly to protect the keyless rate-limited upstream.",
"source": "CoinGecko public API (api.coingecko.com/api/v3, live)",
"service": "coinmarkets-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/markets": "All spot markets for a coin across exchanges, ranked by USD volume (coin=bitcoin, target=USDT optional, limit=50).",
"GET /v1/exchanges": "Per-exchange volume and pair counts for a coin (coin=bitcoin)."
},
"description": "Live 'where to trade' data for any crypto coin from CoinGecko. The markets endpoint returns every spot market for a coin across all exchanges — exchange, pair, last price, 24h volume, bid/ask spread and trust score — so you can see where it trades, at what price and with what liquidity (arbitrage, best execution). The exchanges endpoint aggregates that to per-exchange volume and pair counts. Live, no key, nothing stored. The cross-exchange market view for a single coin, distinct from the single-venue exchange tickers, whole-market and single-coin-profile APIs.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T16:47:00.559Z",
"request_id": "e42c3486-01d7-4d98-ae9a-caef69fcb0f7"
},
"status": "ok",
"message": "Meta",
"success": true
}