GET
/
api
/
v1
/
withdrawals
curl --request GET \
  --url https://user-account.sandbox.rails.xyz/api/v1/withdrawals \
  --header 'Authorization: Bearer <token>'
{
  "withdrawals": [
    {
      "dataType": "WITHDRAW",
      "market": "USDT",
      "value": "990.0",
      "fees": "10.0",
      "txCreated": 1717466763457,
      "txHash": "0x19a89550272fc44a881d5e28a3619eace550b80191ef5a803163f90024d9f702"
    }
  ],
  "last": "USDT#WITHDRAW#0x19a89550272fc44a881d5e28a3619eace550b80191ef5a803163f90024d9f702#1717466763457"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

start
string

This is an optional parameter to support pagination. Get the value from the last field if present in the previous response.

Response

200 - application/json

The response is of type object.