Zum Inhalt springen
GET /v1/price

Actionable lowest-sell / highest-buy summary

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

Beispiel-Response

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

{
    "data": {
        "note": "The actionable warframe.market price for 'mirage_prime_set', using only orders from players who are online or in-game (offline players cannot trade, so their orders are excluded). lowest_sell_plat is the cheapest you can buy it for right now; highest_buy_plat is the most a buyer will pay; spread_plat is the gap. All prices are in platinum (Warframe's premium in-game currency, not real money). Use /v1/orders for the full book. Live, cached ~4m.",
        "slug": "mirage_prime_set",
        "source": "warframe.market public v2 API (api.warframe.market/v2/orders), keyless",
        "spread_plat": 17,
        "online_buyers": 8,
        "online_sellers": 45,
        "highest_buy_plat": 70,
        "lowest_sell_plat": 87
    },
    "meta": {
        "timestamp": "2026-06-13T04:41:59.586Z",
        "request_id": "7a3211fd-f2f6-4358-9fa6-5261aae6d926"
    },
    "status": "ok",
    "message": "Price retrieved successfully",
    "success": true
}