/v1/movers
Top gainers and losers together
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/cryptomovers-api/v1/movers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomovers-api/v1/movers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomovers-api/v1/movers");
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/movers",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"losers": [
{
"id": "humanity",
"name": "Humanity",
"rank": 170,
"price": 0.11092,
"symbol": "H",
"change_pct": -84.54,
"market_cap": 207570212,
"volume_24h": 583614770
},
{
"id": "bianrensheng",
"name": "币安人生 (BinanceLife)",
"rank": 85,
"price": 0.724777,
"symbol": "币安人生",
"change_pct": -13.53,
"market_cap": 724776779,
"volume_24h": 50023047
},
{
"id": "falcon-finance-ff",
"name": "Falcon Finance",
"rank": 154,
"price": 0.08053,
"symbol": "FF",
"change_pct": -13.46,
"market_cap": 231524664,
"volume_24h": 9319421
},
{
"id": "origintrail",
"name": "OriginTrail",
"rank": 203,
"price": 0.342386,
"symbol": "TRAC",
"change_pct": -12.6,
"market_cap": 151577373,
"volume_24h": 9733227
},
{
"id": "edgex",
"name": "edgeX",
"rank": 211,
"price": 0.404668,
"symbol": "EDGE",
"change_pct": -11.99,
"market_cap": 141251423,
"volume_24h": 7053179
},
{
"id": "ethena",
"name": "Ethena",
"rank": 83,
"price": 0.080584,
"symbol": "ENA",
"change_pct": -10.07,
"market_cap": 747576932,
"volume_24h": 191418211
},
{
"id": "siren-2",
"name": "Siren",
"rank": 77,
"price": 1.18,
"symbol": "SIREN",
"change_pct": -8.51,
"market_cap": 858340781,
"volume_24h": 47428865
},
{
"id": "unibase",
"name": "Unibase",
"rank": 132,
"price": 0.117391,
"symbol": "UB",
"change_pct": -8.14,
"market_cap": 293477393,
"volume_24h": 15898496
},
{
"id": "layerzero",
"name": "LayerZero",
"rank": 168,
"price": 0.830364,
"symbol": "ZRO",
"change_pct": -8.13,
"market_cap": 209517981,
"volume_24h": 34714137
},
{
"id": "billions-network",
"name": "Billions Network",
"rank": 188,
…