/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/cryptoconvert-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoconvert-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoconvert-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/cryptoconvert-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Coin ids are lowercase CoinGecko ids (bitcoin, ethereum, solana). vs currencies are fiats or major coins (usd, eur, btc, eth). A 60s protective cache shields the shared upstream rate limit.",
"source": "CoinGecko /simple/price + /simple/supported_vs_currencies (live, keyless)",
"service": "cryptoconvert-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/price": "Live price of coins in currencies + market cap/volume/change (ids=bitcoin,ethereum&vs=usd,eur).",
"GET /v1/convert": "Convert an amount of a coin to a fiat or another coin (from=bitcoin&to=usd&amount=2).",
"GET /v1/supported": "Every currency you can quote or convert into."
},
"description": "Live crypto price and currency conversion from the public CoinGecko feed. A conversion utility, distinct from market-overview, arbitrage and coin-profile tools. The price endpoint returns the live price of one or more coins in one or more currencies with market cap, 24h volume and 24h change; the convert endpoint converts an amount of a coin into a fiat currency or another coin (2 BTC to EUR, or 1.5 BTC to ETH); the supported endpoint lists every currency you can quote or convert into. Live, no key.",
"upstream_status": "ok",
"supported_currencies": 63
},
"meta": {
"timestamp": "2026-06-11T07:49:22.380Z",
"request_id": "12278db5-9fd0-423c-b305-7a822b90d774"
},
"status": "ok",
"message": "Meta",
"success": true
}