Zum Inhalt springen
GET /v1/orders

Live order book for an item

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "The live warframe.market order book for 'mirage_prime_set' — buy/sell offers with their price in platinum, quantity, mod rank (for mods) and the seller's status. Sells are listed cheapest-first, buys highest-first. type: sell/buy/all (default sell); online=false to include offline players' (possibly stale) orders. Platinum is Warframe's premium in-game currency, not real money. Live, cached ~4m.",
        "slug": "mirage_prime_set",
        "type": "sell",
        "count": 15,
        "orders": [
            {
                "rank": null,
                "type": "sell",
                "seller": "CoCoDioDio",
                "platinum": 87,
                "quantity": 4,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "Legionofwinter",
                "platinum": 87,
                "quantity": 1,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "meeeeeeek",
                "platinum": 88,
                "quantity": 1,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "turbodart",
                "platinum": 89,
                "quantity": 1,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "wuqinga",
                "platinum": 89,
                "quantity": 2,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "KI_-x0Qo0OInl_--_1Il-g",
                "platinum": 90,
                "quantity": 10,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "Alucard_1098",
                "platinum": 90,
                "quantity": 1,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "HAMSTER_ARMOR_FK",
                "platinum": 90,
                "quantity": 6,
                "per_trade": 1,
                "seller_status": "online"
            },
            {
                "rank": null,
                "type": "sell",
                "seller": "zhang.13",
                "platinum": 90,
                "quantity": 3,
                "per_trade": 1,
                "seller_status": "ingame"
            },
            {
                "rank
…