Items
List Items
Get a paginated list of all Steam market items tracked by SteamApis with optional filtering.
Endpoint
This endpoint returns a paginated list of all Steam market items tracked by SteamApis. You can optionally filter items by when their metadata, histogram, or price history was last updated.
GET /v2/steam/items
Query parameters
appId
number
Filter items by appId.
cursor
string
Pagination cursor. Pass the
cursor value from a previous response to fetch the next page.metaUpdatedAfter
string
Filter items whose metadata was updated after this ISO timestamp.
histogramUpdatedAfter
string
Filter items whose histogram data was updated after this ISO timestamp.
priceHistoryUpdatedAfter
string
Filter items whose price history was updated after this ISO timestamp.
Authentication
Include your API key as the x-api-key request header.
x-api-key: YourSecretAPIKey
Response fields
| Field | Type | Description |
|---|---|---|
results | array | Array of item objects |
cursor | string|null | Cursor for the next page, or null if no more results |
hasMore | boolean | Whether there are more results to fetch |
Item object
| Field | Type | Description |
|---|---|---|
_id | string | Document ID (used as cursor value and as itemId for other endpoints) |
nameId | number|null | Steam market name ID |
appId | number | Steam application ID |
marketName | string | Market display name |
marketHashName | string | URL-encoded market name (used in Steam URLs) |
classId | number|null | Steam class ID |
instanceId | number|null | Steam instance ID |
isGlitched | boolean | Whether the item listing is glitched on Steam |
metaUpdatedAt | string|null | ISO timestamp of last metadata update |
histogramUpdatedAt | string|null | ISO timestamp of last histogram update |
priceHistoryUpdatedAt | string|null | ISO timestamp of last price history update |
Response example
Example output for this endpoint. For brevity's sake, some items were omitted.
response.json
{
"success": true,
"results": [
{
"_id": "6789abcdef012345",
"nameId": 176096978,
"appId": 730,
"marketName": "AK-47 | Redline (Field-Tested)",
"marketHashName": "AK-47 %7C Redline %28Field-Tested%29",
"classId": 310777487,
"instanceId": 480085569,
"isGlitched": false,
"metaUpdatedAt": "2025-01-15T00:00:00.000Z",
"histogramUpdatedAt": "2025-01-15T00:00:00.000Z",
"priceHistoryUpdatedAt": "2025-01-15T00:00:00.000Z"
}
],
"cursor": "6789abcdef012345",
"hasMore": true
}
This endpoint returns up to 10,000 results per request. Use cursor-based pagination to retrieve all items.