/v1/price
Live price overview for one item
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/steammarket-api/v1/price" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steammarket-api/v1/price", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steammarket-api/v1/price");
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/price",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"url": "https://steamcommunity.com/market/listings/730/AK-47%20%7C%20Redline%20(Field-Tested)",
"name": "AK-47 | Redline (Field-Tested)",
"note": "The live Steam Community Market price for one item: lowest_price_usd is the cheapest current ask, median_price_usd is the median of recent sales, volume_24h is how many sold in the last 24 hours. Prices in USD. name must be the exact market name (find it via /v1/search). Live, cached ~10m.",
"appid": 730,
"source": "Steam Community Market priceoverview endpoint (steamcommunity.com/market), keyless",
"volume_24h": 98,
"lowest_price_usd": null,
"median_price_usd": 56.47
},
"meta": {
"timestamp": "2026-06-13T04:42:00.597Z",
"request_id": "64b517e7-2177-4fb0-ab86-95c108c92520"
},
"status": "ok",
"message": "Price retrieved successfully",
"success": true
}