Get transfers
GET/subaccounts/transfers
Returns information about multiple transfers of assets between a subaccount and your main account.
This is a private endpoint. To send requests, you need to authenticate.
To use this private endpoint, you must use the API key of your main account with the Internal transfer permission.
Rate limit weight points: 5
Request
Query Parameters
The unique identifier for the subaccount.
Your identifier of the transfer.
The Unix timestamp in milliseconds starting from which to return transfers.
The Unix timestamp in milliseconds starting up to which to return transfers.
The maximum number of transfers to return.
Responses
- 200
- 4XX
The request was successful.
Response Headers
The number of remaining weight points before it resets at bitvavo-ratelimit-resetat.
The time when bitvavo-ratelimit-remaining resets to bitvavo-ratelimit-limit.
The number of available weight points in one minute.
- application/json
- Schema
- Example (body)
Schema
- Array [
- ]
items object[]required
An array of objects per returned transferId.
Bitvavo identifier of the transfer.
Your identifier of the transfer.
The unique identifier for the subaccount.
Indicates the direction of the transfer.
Possible values: [masterToSub, subToMaster]
The asset that was transferred.
The quantity of the asset to transfer.
Status of the transfer.
Possible values: [failed, pending, completed]
The Unix timestamp when the transfer was created.
The Unix timestamp in milliseconds starting from which to return transfers.
The Unix timestamp in milliseconds starting up to which to return transfers.
The maximum number of transfers to return.
Possible values: >= 1 and <= 1000
25{
"items": [
{
"transferId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"clientRequestId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"subaccountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"direction": "masterToSub",
"symbol": "string",
"amount": "string",
"status": "failed",
"createdAt": "string"
}
],
"start": 0,
"end": 0,
"limit": 25
}
For error codes, see Handle errors.