/v1/orders
Live order book for an item
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
…