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
| Field | Type | Description |
|---|---|---|
name | string | Item market name |
marketplace | string | Marketplace the item is listed on |
game | string | Game the item belongs to |
priceUSD | number|null | Lowest offer price in USD |
priceEUR | number|null | Lowest offer price in EUR |
priceCNY | number|null | Lowest offer price in CNY |
priceRUB | number|null | Lowest offer price in RUB |
offerCount | number | Number of open offers |
condition | string|null | Item condition (e.g. Field-Tested) |
thumbnail | string|null | URL to the item thumbnail image |
updatedAt | number | Unix timestamp (seconds) of last update |
offers | array | Array of offer objects |
buyOrders | array | Array of buy order objects |
Offer object
| Field | Type | Description |
|---|---|---|
purchaseLink | string|null | Direct link to buy the item on the marketplace |
inspectLink | string|null | Steam inspect link (CS2 only) |
priceUSD | number|null | Offer price in USD |
priceEUR | number|null | Offer price in EUR |
priceCNY | number|null | Offer price in CNY |
priceRUB | number|null | Offer price in RUB |
float | number|null | Wear value between 0.0 and 1.0 (CS2 only) |
paintIndex | number|null | Skin pattern ID (CS2 only) |
paintSeed | number|null | Pattern seed number (CS2 only) |
daysTradeLocked | number|null | Days until the item becomes tradeable |
foundAt | number | Unix timestamp when the offer was detected |
updatedAt | number | Unix timestamp of last update |
stickers | array|null | Applied stickers (CS2 only) |
ownerId | string|null | Seller identifier on the marketplace |
Buy order object
| Field | Type | Description |
|---|---|---|
orderId | string|null | Marketplace-specific order ID |
quantity | number|null | Number of units requested |
priceUSD | number|null | Bid price in USD |
priceEUR | number|null | Bid price in EUR |
priceCNY | number|null | Bid price in CNY |
priceRUB | number|null | Bid price in RUB |
itemPhase | string|null | Item phase or variant (CS2 doppler phases, etc.) |
updatedAt | number | Unix 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
}
]
}