# Fetches available item(s) based on the item_id(s) passed in query

`GET /v1/check-availability`

Prices are integers. `1000` = `1 USD`.

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `api` | query | string | required | Your [WAXPEER API](https://waxpeer.com/profile/user) |
| `item_id` | query | string | required | Steam item id, you can pass multiple ids up to 100 as item_id=1&item_id=2 |
| `game` | query | enum | optional | Game name, supported values: csgo, dota2, tf2, rust. Defaults to csgo if not provided |

## Example (curl)

```bash
curl -X GET 'https://api.waxpeer.com/v1/check-availability?api=%7B%7BAPI_KEY%7D%7D&item_id=17441538677&game=csgo'
```

## Example response

```json
{
  "success": true,
  "items": [
    {
      "item_id": 27165625733,
      "selling": true,
      "price": 1687470,
      "name": "★ Karambit | Fade (Factory New)",
      "image": "https://steamcommunity-a.akamaihd.net/economy/image/class/730/310854699/200fx125f"
    }
  ]
}
```

## Responses

- `200` successful operation

## Notes for agents

- Auth is the query parameter `api`, not an Authorization header.
- See [/statuses.md](/statuses.md) for numeric trade status plus `escrow_status` / `release_date`.
- Prefer GET /v2/search-items-by-name over v1.
- Do not use GET /v1/ready-to-transfer-p2p; use the [trade websocket](/websocket.md).
