Vai al contenuto
GET /v1/price

Actionable lowest-sell / highest-buy summary

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/warframemarket-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}