/v1/active
Most-active names
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/active" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stockmovers-api/v1/active", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stockmovers-api/v1/active");
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/active",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"by": "share_volume",
"as_of": "Data as of Jun 11, 2026 9:40 PM ET",
"asset": "STOCKS",
"count": 10,
"market": "US",
"movers": [
{
"name": "Direxion Daily Semiconductor Bear 3x Shares",
"price": 4.95,
"value": 883239287.94,
"symbol": "SOXS",
"price_change": -1.62
},
{
"name": "Aditxt, Inc.",
"price": 0.013,
"value": 595976903.88,
"symbol": "ADTX",
"price_change": -0.0055
},
{
"name": "Direxion Small Cap Bear 3X Shares",
"price": 4.265,
"value": 333935158.63,
"symbol": "TZA",
"price_change": -0.415
},
{
"name": "ProShares Bitcoin ETF",
"price": 8.655,
"value": 326109773.89,
"symbol": "BITO",
"price_change": 0.225
},
{
"name": "Theriva Biologics, Inc.",
"price": 0.3206,
"value": 286384076.35,
"symbol": "TOVX",
"price_change": 0.0771
},
{
"name": "Super Micro Computer, Inc.",
"price": 31.97,
"value": 245776073.95,
"symbol": "SMCI",
"price_change": 2.7
},
{
"name": "Hitek Global Inc.",
"price": 0.559,
"value": 218886409.13,
"symbol": "HKIT",
"price_change": 0.123
},
{
"name": "Intel Corporation",
"price": 116.96,
"value": 184355248.51,
"symbol": "INTC",
"price_change": 9.92
},
{
"name": "Propanc Biopharma, Inc. Common Stock",
"price": 2.43,
"value": 173304549.17,
"symbol": "PPCB",
"price_change": 1.08
},
{
"name": "Rubico Inc. Common Stock",
"price": 0.6203,
"value": 160645717.49,
"symbol": "RUBI",
"price_change": 0.1503
}
],
"source": "Nasdaq",
"category": "most_active"
},
"meta": {
"timestamp": "2026-06-12T01:42:36.045Z",
"request_id": "c0fa2daf-d909-43e4-b15f-437d4671ddac"
},
"status": "ok",
"message": "Most active retrieved successfully",
"success": true
}