Sync with Waxpeer session to auto-fill API key

Fetch a list of merchant deposits

GET/v2/merchant/deposits

Fetch a list of merchant deposits within a specified date range. Limit 200 records per response.

Parameters

NameLocationTypeDescription
api
required
querystring
merchant
required
querystring

Your merchant name

steam_id
optional
querystring

Steam ID (17 digits)

start
required
querystring

Start date in YYYY-MM-DD format

end
required
querystring

End date in YYYY-MM-DD format

start_from
optional
queryinteger

Start from transaction ID (for pagination)

Responses

200 **Please open the schema to see the response structure, fields, and their descriptions**

Response
{
  "status": "success",
  "deposits": [
    {
      "transaction_id": 123456,
      "deposit_id": "123456asd",
      "merchant": "mymerchant",
      "steam_id": "76561198000000000",
      "trade_url_token": "abcdefgh",
      "currency": "USD",
      "min_amount": 10,
      "max_amount": 100,
      "result_url": "https://yourwebsite.com/result",
      "fail_url": "https://yourwebsite.com/fail",
      "success_url": "https://yourwebsite.com/success",
      "game": "csgo",
      "priority_game": "csgo",
      "hash": "7USFcwzEvgxs6l2u3ow4IQxlgJBYEZZt",
      "widget": true,
      "steam_trade": 789012,
      "created": "2023-10-05T12:34:56Z",
      "items": [
        "123",
        "456",
        "789"
      ],
      "steam_trade_data": {
        "trade_id": "1234567890",
        "done": true,
        "reason": "Seller failed to accept",
        "created": "2023-10-05T12:34:56Z",
        "proccessed_time": "2023-10-05T12:40:00Z",
        "user": {
          "name": "SteamUser",
          "avatar": "https://avatars.cloudflare.steamstatic.com/0ac149f87545bf80733f29d079e29c0904ceb171_full.jpg",
          "steam_id": "76561198000000000"
        },
        "items": [
          {
            "item_id": "141414144",
            "name": "AWP | Asiimov (Field-tested)",
            "price": 1000,
            "give_amount": 1000,
            "status": 4
          }
        ]
      }
    }
  ],
  "start_from": 123456
}