Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/steammarket-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/steammarket-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steammarket-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steammarket-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "popular takes game and count (1-50). search takes game, q (an item name), sort (popular/price_asc/price_desc/quantity/name) and count. price takes game and name (the exact market item name). meta takes no parameters. game is a friendly alias (cs2/csgo/dota2/tf2/rust/pubg) or a numeric Steam appid. Prices are USD; Steam rate-limits market calls, so a ~10-minute cache fronts the upstream and stale data is served if the limit is hit.",
        "games": {
            "cs2": 730,
            "tf2": 440,
            "csgo": 730,
            "pubg": 578080,
            "rust": 252490,
            "dota2": 570
        },
        "sample": {
            "game": "cs2",
            "top_item": "Dreams & Nightmares Case",
            "price_usd": 1.73
        },
        "source": "Steam Community Market public endpoints (steamcommunity.com/market), keyless, live",
        "service": "steammarket-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/price": "Live price for one item (game=cs2, name=AK-47 | Redline (Field-Tested)).",
            "GET /v1/search": "Search items by name (game=cs2, q=dragon lore).",
            "GET /v1/popular": "Most-listed items on the market for a game (game=cs2)."
        },
        "description": "Live prices from the Steam Community Market (steamcommunity.com/market), the largest virtual-item economy in gaming, keyless. The popular endpoint lists the most-listed items on the market for a game; search finds items by name (sorted by price or popularity), each with its sell price and listing count; price returns the live price overview for one item (lowest ask, median sale, 24h sold volume). The Steam Market cut — distinct from the Steam store, player-count and review feeds; it is the trading-price layer for virtual items. Prices are in US dollars.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:00.902Z",
        "request_id": "3b82e839-96fb-49ac-89cd-cbac900692c8"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}