/v1/price
Live price overview for one item
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}