/v1/items
Search tradeable items by name
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/warframemarket-api/v1/items" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warframemarket-api/v1/items", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warframemarket-api/v1/items");
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/items",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}