Transfer from a Kraken spot wallet to a Kraken Futures wallet. Note that a transfer in the other direction must be requested via the Kraken Futures API endpoint for withdrawals to Spot wallets.
API Key Permissions Required: Funds permissions - Query
curl --request POST \
--url https://api.kraken.com/0/private/WalletTransfer \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828271,
"asset": "XBT",
"from": "Spot Wallet",
"to": "Futures Wallet",
"amount": "2.54"
}
'{
"error": [],
"result": {
"refid": "FTQcuak-V6Za8qrWnhzTx67yYHz8Tg"
}
}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
Asset to transfer (asset ID or altname)
"XBT"
Source wallet
Spot Wallet Destination wallet
Futures Wallet Amount to transfer
curl --request POST \
--url https://api.kraken.com/0/private/WalletTransfer \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828271,
"asset": "XBT",
"from": "Spot Wallet",
"to": "Futures Wallet",
"amount": "2.54"
}
'{
"error": [],
"result": {
"refid": "FTQcuak-V6Za8qrWnhzTx67yYHz8Tg"
}
}