# Fetch all items listed on WAXPEER (large response size)

`GET /v1/prices/snapshot`

Updates once per 10 seconds

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

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `game` | query | enum | optional | Which game would you like to fetch items from |

## Example (curl)

```bash
curl -X GET 'https://api.waxpeer.com/v1/prices/snapshot?game=csgo'
```

## Example response

```json
{
  "success": false,
  "timestamp": 1687297281,
  "items": [
    {
      "item_id": "27253164358",
      "price": "1380000",
      "name": "★ Butterfly Knife | Doppler (Factory New)"
    }
  ],
  "msg": "Snapshot not found"
}
```

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