Aller au contenu
GET /v1/price

Live price overview for one item

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/steammarket-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}