This endpoint returns information on digital asset deposits and withdrawals to and from a Kraken Futures account. Please note, this applies to direct Kraken Futures accounts only and not to Kraken Single Sign-on (SSO) accounts.
Authentication is required.
Endpoint |
Request Type | Permissible API Keys |
/api/v3/transfers
|
GET | Read-only, Read-write, Master |
Argument | Type | Required | Description |
lastTransferTime | ISO8601 datetime | No | If not provided, returns the last 100 digital asset deposits or withdrawals w.r.t. receivedTime. If provided, returns the 100 entries before lastTransferTime w.r.t. receivedTime |
Sample Call |
https://futures.kraken.com/derivatives/api/v3/transfers?lastTransferTime=2016-02-26T00:00:00.000Z |
Sample Return if Successful |
{ |
Field |
Type | Description |
result
|
string | Always success |
serverTime
|
ISO8601 datetime | The server date and time |
transfers
|
list of structures | A list containing structures with information on the account’s transfer history, see below. The list is sorted descending by receivedTime |
receivedTime | ISO8601 datetime |
|
completedTime | ISO8601 datetime |
|
status | string |
The status of the transfer request, either of:
|
transfer_id | UUID |
The unique identifier of the transfer |
transaction_id | string |
|
targetAddress | string | The digital asset address to which the transfer is sent |
transferType | string | The type of the transfer, either deposit or withdrawal |
amount | float | The digital asset amount that was transferred. Positive for deposits and negative for withdrawals |
Sample Return if Unsuccessful |
{ "result":"error", "serverTime":"2016-02-25T09:45:53.818Z", "error":"apiLimitExceeded", } |
Field |
Type | Description |
result
|
string | Always error |
serverTime
|
ISO8601 datetime | The server date and time |
error
|
string |
The reason the API call failed, either of:
|