Manage deposits, withdrawals, and wallet transfers safely.
Use this skill for:
kraken deposit methods BTC -o json 2>/dev/null
kraken deposit addresses BTC "Bitcoin" -o json 2>/dev/null
kraken deposit addresses BTC "Bitcoin" --new -o json 2>/dev/null
kraken deposit status --asset BTC -o json 2>/dev/null
Filter by time range:
kraken deposit status --asset BTC --start 1704067200 --end 1706745600 -o json 2>/dev/null
Paginate large result sets:
kraken deposit status --asset BTC --limit 25 --cursor <CURSOR> -o json 2>/dev/null
kraken withdrawal methods --asset BTC -o json 2>/dev/null
kraken withdrawal addresses --asset BTC --verified true -o json 2>/dev/null
kraken withdrawal info BTC "my-btc-address" 0.5 -o json 2>/dev/null
kraken withdraw BTC "my-btc-address" 0.5 -o json 2>/dev/null
kraken withdrawal status --asset BTC -o json 2>/dev/null
Cancel a pending withdrawal:
kraken withdrawal cancel BTC <REFID> -o json 2>/dev/null
Move funds between spot and futures wallets:
kraken wallet-transfer USD 1000 --from <SPOT_IIBAN> --to <FUTURES_IIBAN> -o json 2>/dev/null
Futures-specific transfer:
kraken futures transfer 1000 USD -o json 2>/dev/null
Check transfer history:
kraken futures transfers -o json 2>/dev/null
Always check fees before withdrawing. Compare the fee to the withdrawal amount:
INFO=$(kraken withdrawal info BTC "my-btc-address" 0.5 -o json 2>/dev/null)
# Parse .fee and .limit from the response
# Present fee to user before proceeding
--verified true when listing addresses to confirm approval status.