REST

Get Item

Fetch a single item from a specific marketplace, including its current offers and open buy orders.

Endpoint

Returns the full data for a single item on a single marketplace, including every currently listed offer and every open buy order.

GET   /v2/items

Query parameters

marketplace
string
Marketplace name (e.g. Buff163). Case-insensitive.
game
string
Game code (e.g. CS2, Dota2, Rust, TF2).
name
string
Full item market name (e.g. AK-47 | Redline (Field-Tested)).

Authentication

See REST overview for base URL, authentication, and error shape.

Response fields

FieldTypeDescription
namestringItem market name
marketplacestringMarketplace the item is listed on
gamestringGame the item belongs to
priceUSDnumber|nullLowest offer price in USD
priceEURnumber|nullLowest offer price in EUR
priceCNYnumber|nullLowest offer price in CNY
priceRUBnumber|nullLowest offer price in RUB
offerCountnumberNumber of open offers
conditionstring|nullItem condition (e.g. Field-Tested)
thumbnailstring|nullURL to the item thumbnail image
updatedAtnumberUnix timestamp (seconds) of last update
offersarrayArray of offer objects
buyOrdersarrayArray of buy order objects

Offer object

FieldTypeDescription
purchaseLinkstring|nullDirect link to buy the item on the marketplace
inspectLinkstring|nullSteam inspect link (CS2 only)
priceUSDnumber|nullOffer price in USD
priceEURnumber|nullOffer price in EUR
priceCNYnumber|nullOffer price in CNY
priceRUBnumber|nullOffer price in RUB
floatnumber|nullWear value between 0.0 and 1.0 (CS2 only)
paintIndexnumber|nullSkin pattern ID (CS2 only)
paintSeednumber|nullPattern seed number (CS2 only)
daysTradeLockednumber|nullDays until the item becomes tradeable
foundAtnumberUnix timestamp when the offer was detected
updatedAtnumberUnix timestamp of last update
stickersarray|nullApplied stickers (CS2 only)
ownerIdstring|nullSeller identifier on the marketplace

Buy order object

FieldTypeDescription
orderIdstring|nullMarketplace-specific order ID
quantitynumber|nullNumber of units requested
priceUSDnumber|nullBid price in USD
priceEURnumber|nullBid price in EUR
priceCNYnumber|nullBid price in CNY
priceRUBnumber|nullBid price in RUB
itemPhasestring|nullItem phase or variant (CS2 doppler phases, etc.)
updatedAtnumberUnix timestamp of last update

Response example

response.json
{
  "name": "AK-47 | Redline (Field-Tested)",
  "marketplace": "Buff163",
  "game": "CS2",
  "priceUSD": 45.99,
  "priceEUR": 42.50,
  "priceCNY": 325.00,
  "priceRUB": 4200.00,
  "offerCount": 128,
  "condition": "Field-Tested",
  "thumbnail": "https://community.cloudflare.steamstatic.com/economy/image/...",
  "updatedAt": 1711152000,
  "offers": [
    {
      "purchaseLink": "https://buff.163.com/goods/...",
      "inspectLink": "steam://rungame/730/...",
      "priceUSD": 45.99,
      "priceEUR": 42.50,
      "priceCNY": 325.00,
      "priceRUB": 4200.00,
      "float": 0.2341,
      "paintIndex": 282,
      "paintSeed": 123,
      "daysTradeLocked": 0,
      "foundAt": 1711150000,
      "updatedAt": 1711152000,
      "stickers": [],
      "ownerId": "user-abc"
    }
  ],
  "buyOrders": [
    {
      "orderId": "order-xyz",
      "quantity": 5,
      "priceUSD": 43.00,
      "priceEUR": 39.80,
      "priceCNY": 305.00,
      "priceRUB": 3950.00,
      "itemPhase": null,
      "updatedAt": 1711151800
    }
  ]
}