Zum Inhalt springen
GET /v1/losers

Top declining names

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/stockmovers-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/stockmovers-api/v1/losers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stockmovers-api/v1/losers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stockmovers-api/v1/losers");
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/losers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "as_of": "Data as of Jun 11, 2026 9:40 PM ET",
        "asset": "STOCKS",
        "count": 10,
        "market": "US",
        "movers": [
            {
                "name": "NETCLASS TECHNOLOGY INC",
                "price": 0.4,
                "symbol": "NTCL",
                "change_pct": -86.2543,
                "price_change": -2.51
            },
            {
                "name": "Origin Materials, Inc.",
                "price": 0.0003,
                "symbol": "ORGNW",
                "change_pct": -57.1429,
                "price_change": -0.0004
            },
            {
                "name": "Purple Biotech Ltd.",
                "price": 1.54,
                "symbol": "PPBT",
                "change_pct": -47.973,
                "price_change": -1.42
            },
            {
                "name": "Alta Global Group Limited",
                "price": 0.4226,
                "symbol": "MMA",
                "change_pct": -46.8428,
                "price_change": -0.3724
            },
            {
                "name": "Big Tree Cloud Holdings Limited",
                "price": 3.88,
                "symbol": "DSY",
                "change_pct": -46.1111,
                "price_change": -3.32
            },
            {
                "name": "VS Media Holdings Limited",
                "price": 1.11,
                "symbol": "VSME",
                "change_pct": -45.8537,
                "price_change": -0.94
            },
            {
                "name": "Paranovus Entertainment Technology Ltd.",
                "price": 0.29,
                "symbol": "PAVS",
                "change_pct": -42,
                "price_change": -0.21
            },
            {
                "name": "Atossa Therapeutics, Inc.",
                "price": 2.585,
                "symbol": "ATOS",
                "change_pct": -41.25,
                "price_change": -1.815
            },
            {
                "name": "Evolv Technologies Holdings, Inc.",
                "price": 0.0302,
                "symbol": "EVLVW",
                "change_pct": -40.9002,
                "price_change": -0.0209
            },
            {
                "name": "LGL Group, Inc. (The)",
                "price": 0.02,
                "symbol": "LGL",
                "change_pct": -39.2097,
                "price_change": -0.0129
            }
        ],
        "source": "Nasdaq",
        "category": "losers"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:35.949Z",
        "request_id": "b2b7df41-ac05-4bda-95a7-d9d97d40261d"
    },
    "status": "ok",
    "message": "Losers retrieved successfully",
    "success": true
}