/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/cryptomovers-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomovers-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomovers-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/cryptomovers-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"source": "CoinGecko public markets (live)",
"periods": [
"1h",
"24h",
"7d"
],
"service": "cryptomovers-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/losers": "Top losers over a window (period=1h|24h|7d, limit).",
"GET /v1/movers": "Top gainers and losers together (period=24h, limit each).",
"GET /v1/gainers": "Top gainers over a window (period=1h|24h|7d, limit)."
},
"description": "Live crypto top-gainers and top-losers from CoinGecko: across the 1h, 24h and 7d windows, the biggest gainers and losers among the market-cap-leading coins, each with price, percent move, market cap and 24h volume. Get the gainers board, the losers board, or both. A junk filter keeps to coins with a real market cap. Live, no key. Distinct from trending (most-searched) and price/market-cap APIs — this is the performance gainers/losers leaderboard.",
"universe_size": 250,
"min_market_cap_usd": 10000000
},
"meta": {
"timestamp": "2026-06-09T03:02:13.548Z",
"request_id": "dcd3c256-6488-42b8-9568-b207d3853dee"
},
"status": "ok",
"message": "Meta",
"success": true
}