# Fetches recommended item price and other info

`GET /v1/get-steam-items`

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `api` | query | string | required | Your [WAXPEER API](https://waxpeer.com/profile/user) |
| `game` | query | enum | required | From which app id get items |

## Example (curl)

```bash
curl -X GET 'https://api.waxpeer.com/v1/get-steam-items?api=%7B%7BAPI_KEY%7D%7D&game=csgo'
```

## Example response

```json
{
  "success": true,
  "items": [
    {
      "name": "AK-47 | Predator (Minimal Wear)",
      "average": 12685,
      "game_id": 730,
      "type": "Rifle",
      "collection": "The Dust Collection",
      "ru_name": "AK-47 | Хищник (Немного поношенное)"
    }
  ]
}
```

## 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).
