Retrieve information about recent withdrawals. Results are sorted by recency, use the cursor parameter to iterate through list of withdrawals (page size equal to value of limit) from newest to oldest.
API Key Permissions Required: Funds permissions - Withdraw or Data - Query ledger entries
curl --request POST \
--url https://api.kraken.com/0/private/WithdrawStatus \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828271,
"asset": "XBT",
"method": "bitcoin"
}
'{
"error": [],
"result": [
{
"method": "Bitcoin",
"aclass": "currency",
"asset": "XXBT",
"refid": "FTQcuak-V6Za8qrWnhzTx67yYHz8Tg",
"txid": "29323ce235cee8dae22503caba7....8ad3a506879a03b1e87992923d80428",
"info": "bc1qm32pq....3ewt0j37s2g",
"amount": "0.72485000",
"fee": "0.00020000",
"time": 1688014586,
"status": "Pending",
"key": "btc-wallet-1"
},
{
"method": "Bitcoin",
"aclass": "currency",
"asset": "XXBT",
"refid": "FTQcuak-V6Za8qrPnhsTx47yYLz8Tg",
"txid": "29323ce212ceb2daf81255cbea8a5...ad7a626471e05e1f82929501e82934",
"info": "bc1qa35ls....3egf0872h3w",
"amount": "0.72485000",
"fee": "0.00020000",
"time": 1688015423,
"status": "Failure",
"status-prop": "canceled",
"key": "btc-wallet-2"
}
]
}Documentation Index
Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The "API-Key" header should contain your API key.
Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.
Nonce used in construction of API-Sign header
Filter for specific asset being withdrawn
Filter for specific asset class being withdrawn
currency, tokenized_asset Filter for specific name of withdrawal method
Start timestamp, withdrawals created strictly before will not be included in the response
End timestamp, withdrawals created strictly after will be not be included in the response
true/false to enable/disable paginated response (boolean) or cursor for next page of results (string), default false
Number of results to include per page
Optional parameter for viewing xstocks data.
rebased: Display in terms of underlying equity.base: Display in terms of SPV tokens.rebased, base curl --request POST \
--url https://api.kraken.com/0/private/WithdrawStatus \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828271,
"asset": "XBT",
"method": "bitcoin"
}
'{
"error": [],
"result": [
{
"method": "Bitcoin",
"aclass": "currency",
"asset": "XXBT",
"refid": "FTQcuak-V6Za8qrWnhzTx67yYHz8Tg",
"txid": "29323ce235cee8dae22503caba7....8ad3a506879a03b1e87992923d80428",
"info": "bc1qm32pq....3ewt0j37s2g",
"amount": "0.72485000",
"fee": "0.00020000",
"time": 1688014586,
"status": "Pending",
"key": "btc-wallet-1"
},
{
"method": "Bitcoin",
"aclass": "currency",
"asset": "XXBT",
"refid": "FTQcuak-V6Za8qrPnhsTx47yYLz8Tg",
"txid": "29323ce212ceb2daf81255cbea8a5...ad7a626471e05e1f82929501e82934",
"info": "bc1qa35ls....3egf0872h3w",
"amount": "0.72485000",
"fee": "0.00020000",
"time": 1688015423,
"status": "Failure",
"status-prop": "canceled",
"key": "btc-wallet-2"
}
]
}