/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/warframemarket-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warframemarket-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warframemarket-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}