# Notification about created tradofer

`POST /v1/steam-trade`

Due to the Steam update we recommend to send this request and do mobile confirmation only if you receive a successful response (success param is true).

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

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `api` | query | string | required | Your [WAXPEER API](https://waxpeer.com/profile/user) |

## Request body

```json
{
  "tradeid": 123456789,
  "waxid": "e222ca2d-221c-4024-b603-229803af68a4"
}
```

## Example (curl)

```bash
curl -X POST 'https://api.waxpeer.com/v1/steam-trade?api=%7B%7BAPI_KEY%7D%7D' \
  -H 'Content-Type: application/json' \
  -d '{
  "tradeid": 123456789,
  "waxid": "e222ca2d-221c-4024-b603-229803af68a4"
}'
```

## Example response

```json
{
  "success": false,
  "msg": "No token 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).
