/v1/price
Actionable lowest-sell / highest-buy summary
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}