/v1/popular
Most-listed items on the market for a game
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/steammarket-api/v1/popular" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steammarket-api/v1/popular", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steammarket-api/v1/popular");
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/popular",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "The most-listed items on the Steam Community Market for app 730 — the busiest part of the economy. Each item has its current lowest sell price (USD) and how many are listed. total_items_on_market is how many distinct items the game has on the market. Pass game (cs2/csgo/dota2/tf2/rust/pubg or a numeric appid) and count (1-50). Live, cached ~10m.",
"appid": 730,
"count": 10,
"items": [
{
"url": "https://steamcommunity.com/market/listings/730/Dreams%20%26%20Nightmares%20Case",
"name": "Dreams & Nightmares Case",
"type": "Base Grade Container",
"listings": 348484,
"hash_name": "Dreams & Nightmares Case",
"sell_price_usd": 1.73
},
{
"url": "https://steamcommunity.com/market/listings/730/Sealed%20Dead%20Hand%20Terminal",
"name": "Sealed Dead Hand Terminal",
"type": "Base Grade Container",
"listings": 145884,
"hash_name": "Sealed Dead Hand Terminal",
"sell_price_usd": 1.54
},
{
"url": "https://steamcommunity.com/market/listings/730/Fever%20Case",
"name": "Fever Case",
"type": "Base Grade Container",
"listings": 612270,
"hash_name": "Fever Case",
"sell_price_usd": 0.77
},
{
"url": "https://steamcommunity.com/market/listings/730/Revolution%20Case",
"name": "Revolution Case",
"type": "Base Grade Container",
"listings": 215556,
"hash_name": "Revolution Case",
"sell_price_usd": 0.39
},
{
"url": "https://steamcommunity.com/market/listings/730/Prisma%202%20Case",
"name": "Prisma 2 Case",
"type": "Base Grade Container",
"listings": 25342,
"hash_name": "Prisma 2 Case",
"sell_price_usd": 2.04
},
{
"url": "https://steamcommunity.com/market/listings/730/Fracture%20Case",
"name": "Fracture Case",
"type": "Base Grade Container",
"listings": 143552,
"hash_name": "Fracture Case",
"sell_price_usd": 0.77
},
{
"url": "https://steamcommunity.com/market/listings/730/Kilowatt%20Case",
"name": "Kilowatt Case",
"type": "Base Grade Container",
"listings": 532086,
"hash_name": "Kilowatt Case",
"sell_price_usd": 0.26
},
{
"url": "https://steamcommunity.com/market/listings/730/Operation%20Breakout%20Weapon%20Case",
"name": "Operation Breakout Weapon Case",
…