{"openapi":"3.1.0","info":{"title":"Warframe Market API","version":"1.0.0","description":"The live player-to-player trading economy of Warframe, read keyless from warframe.market's public API. Warframe has no auction house in-game, so players trade prime parts, mods, relics and arcanes on warframe.market, posting buy and sell orders priced in platinum (the game's premium currency). Those orders form a real, liquid market — the de-facto price book the whole community uses to value items. The items endpoint searches the catalogue of tradeable items by name. The orders endpoint returns the live order book for one item — the buy and sell offers with their platinum price, quantity, mod rank and the seller's online status, sorted so the best deals come first. The price endpoint is the quick summary: the lowest sell and highest buy among players who are actually online (the actionable prices), the spread between them and how many are trading. This is the Warframe Market cut — a distinct gaming player-economy, separate from the official Warframe world-state feed and the other game and marketplace feeds in the catalogue. Prices are in platinum — the in-game premium currency, not real money; its real-world value floats. Only orders from online or in-game players are truly actionable, so the price summary uses those by default (offline players cannot trade). Counts and prices are the real, live numbers; a short cache fronts the upstream. Keyless.","contact":{"name":"PremiumApi","url":"https://www.oanor.com/by/premiumapi"}},"servers":[{"url":"https://api.oanor.com/warframemarket-api","description":"oanor gateway"}],"tags":[{"name":"Items"},{"name":"Orders"},{"name":"Price"},{"name":"Meta"}],"components":{"securitySchemes":{"oanorKey":{"type":"apiKey","in":"header","name":"x-oanor-key","description":"Get your key at https://www.oanor.com/developer/keys"}}},"security":[{"oanorKey":[]}],"paths":{"/v1/items":{"get":{"operationId":"get_v1_items","tags":["Items"],"summary":"Search tradeable items by name","description":"","parameters":[{"name":"q","in":"query","required":true,"description":"Item name to search","schema":{"type":"string"},"example":"mirage prime"},{"name":"limit","in":"query","required":false,"description":"Max results (1-50)","schema":{"type":"string"},"example":"25"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"note":"Tradeable Warframe items matching a name — each with its slug (use it with /v1/orders and /v1/price), display name and tags. Pass q (required) and limit (1-50). Live catalogue, cached ~1h.","count":5,"items":[{"name":"Mirage Prime Systems Blueprint","slug":"mirage_prime_systems_blueprint","tags":["warframe","component","blueprint","prime"]},{"name":"Mirage Prime Blueprint","slug":"mirage_prime_blueprint","tags":["warframe","blueprint","prime"]},{"name":"Mirage Prime Chassis Blueprint","slug":"mirage_prime_chassis_blueprint","tags":["warframe","component","blueprint","prime"]},{"name":"Mirage Prime Neuroptics Blueprint","slug":"mirage_prime_neuroptics_blueprint","tags":["warframe","component","blueprint","prime"]},{"name":"Mirage Prime Set","slug":"mirage_prime_set","tags":["warframe","prime","set"]}],"query":"mirage prime","source":"warframe.market public v2 API (api.warframe.market/v2/items), keyless"},"meta":{"timestamp":"2026-06-13T04:41:59.368Z","request_id":"959ff6a6-6469-476d-a35a-1bc5af02064e"},"status":"ok","message":"Items retrieved successfully","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/orders":{"get":{"operationId":"get_v1_orders","tags":["Orders"],"summary":"Live order book for an item","description":"","parameters":[{"name":"slug","in":"query","required":true,"description":"Item slug","schema":{"type":"string"},"example":"mirage_prime_set"},{"name":"type","in":"query","required":false,"description":"sell, buy or all","schema":{"type":"string"},"example":"sell"},{"name":"online","in":"query","required":false,"description":"false to include offline players (default true)","schema":{"type":"string"},"example":"true"},{"name":"limit","in":"query","required":false,"description":"Max orders (1-50)","schema":{"type":"string"},"example":"15"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"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":[{"type":"sell","seller":"CoCoDioDio","platinum":87,"quantity":4,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"Legionofwinter","platinum":87,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"meeeeeeek","platinum":88,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"turbodart","platinum":89,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"wuqinga","platinum":89,"quantity":2,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"KI_-x0Qo0OInl_--_1Il-g","platinum":90,"quantity":10,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"Alucard_1098","platinum":90,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"HAMSTER_ARMOR_FK","platinum":90,"quantity":6,"per_trade":1,"seller_status":"online"},{"type":"sell","seller":"zhang.13","platinum":90,"quantity":3,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"XxAmazingguyxX7","platinum":90,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"M444te","platinum":90,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"FFFFJPrime","platinum":90,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"yeran11","platinum":90,"quantity":6,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"mlexyibaiv","platinum":90,"quantity":1,"per_trade":1,"seller_status":"ingame"},{"type":"sell","seller":"-SiIence-","platinum":90,"quantity":2,"per_trade":1,"seller_status":"ingame"}],"source":"warframe.market public v2 API (api.warframe.market/v2/orders), keyless","online_only":true},"meta":{"timestamp":"2026-06-13T04:41:59.510Z","request_id":"26064c79-5031-422b-9d84-4fbbba6aa600"},"status":"ok","message":"Orders retrieved successfully","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/price":{"get":{"operationId":"get_v1_price","tags":["Price"],"summary":"Actionable lowest-sell / highest-buy summary","description":"","parameters":[{"name":"slug","in":"query","required":true,"description":"Item slug","schema":{"type":"string"},"example":"mirage_prime_set"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"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}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/meta":{"get":{"operationId":"get_v1_meta","tags":["Meta"],"summary":"Service metadata","description":"","parameters":[],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"note":"items takes q (an item name) and limit (1-50). orders takes slug (an item slug), type (sell/buy/all, default sell), online (false to include offline orders) and limit (1-50). price takes slug. meta takes no parameters. Prices are in platinum (Warframe premium currency, not real money); the price summary uses only online/in-game players' orders (offline orders cannot be traded). A short cache fronts the upstream (items ~1h, orders ~4m).","sample":{"example_slug":"secura_dual_cestra","tradeable_items":3794},"source":"warframe.market public v2 API (api.warframe.market/v2), keyless, live","service":"warframemarket-api","endpoints":{"GET /v1/meta":"This document.","GET /v1/items":"Search tradeable items by name (q=mirage prime).","GET /v1/price":"Actionable lowest-sell / highest-buy summary (slug=mirage_prime_set).","GET /v1/orders":"Live order book for an item (slug=mirage_prime_set, type=sell)."},"description":"The live player-to-player trading economy of Warframe, from warframe.market, keyless. Warframe has no in-game auction house, so players trade prime parts, mods, relics and arcanes here, priced in platinum. The items endpoint searches the catalogue by name; orders returns the live order book for an item (buy/sell offers, price, quantity, mod rank, seller status); price is the quick summary (lowest sell and highest buy among online players, the spread, trader counts). The Warframe Market cut — distinct from the official Warframe world-state feed and the other game/marketplace feeds. Prices are in platinum, the in-game premium currency (not real money).","upstream_status":"ok"},"meta":{"timestamp":"2026-06-13T04:41:59.669Z","request_id":"48335dce-1603-4548-91e6-230f935c7931"},"status":"ok","message":"Meta","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}}},"x-oanor-pricing":[{"slug":"free","name":"Free","price_cents_month":0,"monthly_call_quota":950,"rps_limit":2,"hard_limit":true},{"slug":"starter","name":"Starter","price_cents_month":1500,"monthly_call_quota":49000,"rps_limit":6,"hard_limit":true},{"slug":"pro","name":"Pro","price_cents_month":3950,"monthly_call_quota":360000,"rps_limit":16,"hard_limit":true},{"slug":"scale","name":"Scale","price_cents_month":8900,"monthly_call_quota":2200000,"rps_limit":40,"hard_limit":true}],"x-oanor-marketplace-url":"https://www.oanor.com/api/warframemarket-api"}