Sync with Waxpeer session to auto-fill API key

Search available items by name(s)

GET/v2/search-items-by-name

Usually used in combination with /v1/prices as expand items group by name.

Rate limit shared with search by name endpoints and currently is 20 per minute for regular users (No limits for partners)

Maximum number of listings per name 50 (in ascending order of price)

Prices are integers. 1000 = $1.00 USD.

Parameters

NameLocationTypeDescription
api
required
querystring
game
optional
queryenum

Which game would you like to edit items from

For csgo dopplers items 'phase' parameter available in response. Possible values: 'Emerald', 'Ruby', 'Sapphire', 'Black Pearl', 'Phase 1', 'Phase 2', 'Phase 3', 'Phase 4'

enum: csgo, tf2, rust, dota2

name
required
querystring

Multiple queries of name, so you can pass it like this name=AK-47 | Aquamarine Revenge (Factory New)&name=AK-47 | Aquamarine Revenge (Factory New). Max 50 at once

minified
optional
queryenum

Will return additional data about items if set to 0

enum: 0, 1

minified_stickers
optional
queryenum

Will return additional data about items if set to 0 (csgo game only)

enum: 0, 1

steam_price
optional
queryenum

Will return recommended (steam) item price if set to 1

enum: 0, 1

delivery_details
optional
queryenum

Will return delivery information if set to 1

enum: 0, 1

ignore_phase
optional
queryenum

Will ignore phase filtering if set to 1

enum: 0, 1

Responses

200 successful operation

Response
{
  "success": true,
  "items": {
    "Glock-18 | Gamma Doppler (Field-Tested)": [
      {
        "name": "Glock-18 | Gamma Doppler (Field-Tested)",
        "price": 2050000,
        "image": "https://steamcommunity-a.akamaihd.net/economy/image/class/730/4887510722",
        "item_id": "27165625734",
        "phase": "Phase 1",
        "float": 0.2447746992111206,
        "steam_price": 1709860,
        "sticker_names": [
          "Sticker | FaZe Clan | Boston 2018"
        ],
        "stickers": [
          {
            "name": "Sticker | FaZe Clan | Boston 2018",
            "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/faze_clan.2e4d2a2e2e2a2e2a2e2a2e2a2e2a2e2a2e2a2a.png",
            "wear": 0,
            "slot": 1,
            "price": 1000
          }
        ]
      }
    ]
  }
}

429 Too many queries. The limit for search endpoints actions to regular users is 20 requests per 60 seconds

Response
{
  "success": false,
  "msg": "string",
  "msBeforeNext": 0
}