/v1/search
Search market items by name
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/steammarket-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steammarket-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steammarket-api/v1/search");
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/steammarket-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Steam Community Market items matching a name within app 730, each with its current lowest sell price (USD) and listing count. Pass game, q (required), sort (popular/price_asc/price_desc/quantity/name, default popular) and count (1-50). Live, cached ~10m.",
"sort": "popular",
"appid": 730,
"count": 10,
"items": [
{
"url": "https://steamcommunity.com/market/listings/730/AK-47%20%7C%20Redline%20(Field-Tested)",
"name": "AK-47 | Redline (Field-Tested)",
"type": "Classified Rifle",
"listings": 1111,
"hash_name": "AK-47 | Redline (Field-Tested)",
"sell_price_usd": 42.91
},
{
"url": "https://steamcommunity.com/market/listings/730/AWP%20%7C%20Redline%20(Field-Tested)",
"name": "AWP | Redline (Field-Tested)",
"type": "Classified Sniper Rifle",
"listings": 250,
"hash_name": "AWP | Redline (Field-Tested)",
"sell_price_usd": 51.42
},
{
"url": "https://steamcommunity.com/market/listings/730/StatTrak%E2%84%A2%20AK-47%20%7C%20Redline%20(Battle-Scarred)",
"name": "StatTrak™ AK-47 | Redline (Battle-Scarred)",
"type": "StatTrak™ Classified Rifle",
"listings": 34,
"hash_name": "StatTrak™ AK-47 | Redline (Battle-Scarred)",
"sell_price_usd": 59.87
},
{
"url": "https://steamcommunity.com/market/listings/730/StatTrak%E2%84%A2%20AWP%20%7C%20Redline%20(Minimal%20Wear)",
"name": "StatTrak™ AWP | Redline (Minimal Wear)",
"type": "StatTrak™ Classified Sniper Rifle",
"listings": 19,
"hash_name": "StatTrak™ AWP | Redline (Minimal Wear)",
"sell_price_usd": 214.05
},
{
"url": "https://steamcommunity.com/market/listings/730/StatTrak%E2%84%A2%20AWP%20%7C%20Redline%20(Field-Tested)",
"name": "StatTrak™ AWP | Redline (Field-Tested)",
"type": "StatTrak™ Classified Sniper Rifle",
"listings": 33,
"hash_name": "StatTrak™ AWP | Redline (Field-Tested)",
"sell_price_usd": 118.47
},
{
"url": "https://steamcommunity.com/market/listings/730/StatTrak%E2%84%A2%20AK-47%20%7C%20Redline%20(Minimal%20Wear)",
"name": "StatTrak™ AK-47 | Redline (Minimal Wear)",
"type": "StatTrak™ Classified Rifle",
"listings": 15,
"hash_name": "StatTrak™ AK-47 | Redline (Minimal Wear)",
"sell_price_usd": 459
},
{
"url": "https://steamcommunity.com/market/listings/730/StatTrak%E2%84%A2%20AK-47%20%7C%20Redline%20(Well-Wo
…