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

FieldTypeDescription
resultsarrayArray of item objects
cursorstring|nullCursor for the next page, or null if no more results
hasMorebooleanWhether there are more results to fetch

Item object

FieldTypeDescription
_idstringDocument ID (used as cursor value and as itemId for other endpoints)
nameIdnumber|nullSteam market name ID
appIdnumberSteam application ID
marketNamestringMarket display name
marketHashNamestringURL-encoded market name (used in Steam URLs)
classIdnumber|nullSteam class ID
instanceIdnumber|nullSteam instance ID
isGlitchedbooleanWhether the item listing is glitched on Steam
metaUpdatedAtstring|nullISO timestamp of last metadata update
histogramUpdatedAtstring|nullISO timestamp of last histogram update
priceHistoryUpdatedAtstring|nullISO 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.