Skip to main content
POST
/
api
/
v4
/
sub-account
/
transfer
/
history
Get Sub-Account Transfer History
curl --request POST \
  --url https://whitebit.com/api/v4/sub-account/transfer/history \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --data '
{
  "id": "<string>",
  "direction": "main_to_sub",
  "limit": 30,
  "offset": 0
}
'
{
  "offset": 123,
  "limit": 123,
  "data": [
    {
      "id": "<string>",
      "direction": "<string>",
      "currency": "<string>",
      "amount": "<string>",
      "createdAt": 123
    }
  ]
}

Authorizations

X-TXC-APIKEY
string
header
required

API key authentication using signed requests

Body

application/json
id
string
required

Sub-account id

direction
enum<string>

Transfer direction (optional)

Available options:
main_to_sub,
sub_to_main
limit
integer
default:30
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: 0 <= x <= 10000

Response

Successful response

offset
integer
limit
integer
data
object[]