/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/stockmovers-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stockmovers-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stockmovers-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/stockmovers-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "asset is stocks (default), etf or funds. For /v1/active, by=volume (share volume, default) or by=dollar (dollar volume). change_pct is the percent move; value on /v1/active is the volume measure. Data updates through the US trading day and is static outside market hours.",
"source": "Nasdaq public market-movers feed (api.nasdaq.com/api/marketmovers, live during US market hours)",
"service": "stockmovers-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/active": "Most-active names (asset=stocks|etf, by=volume|dollar).",
"GET /v1/losers": "Top declining names (asset=stocks|etf|funds).",
"GET /v1/gainers": "Top advancing names (asset=stocks|etf|funds)."
},
"description": "Live US market movers from Nasdaq — the day's biggest gainers, biggest losers and most-active names across stocks, ETFs and mutual funds. gainers = top advancing names (last price, price change, percent change); losers = top declining names; active = most-active names by share volume or dollar volume. Each endpoint takes an asset class: stocks (default), etf or funds. Live, no key, nothing stored. The 'what's moving today' view, distinct from the index-constituent, single-quote and crypto-movers APIs.",
"stocks_as_of": "Data as of Jun 11, 2026 9:40 PM ET",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:36.125Z",
"request_id": "03f6fa32-8042-44c0-869a-9b4495cd0ba5"
},
"status": "ok",
"message": "Meta",
"success": true
}