Skip to main content
POST
/
private
/
WithdrawMethods
Get Withdrawal Methods
curl --request POST \
  --url https://api.kraken.com/0/private/WithdrawMethods \
  --header 'API-Key: <api-key>' \
  --header 'API-Sign: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nonce": 123,
  "asset": "<string>",
  "aclass": "currency",
  "network": "<string>",
  "rebase_multiplier": "rebased"
}
'
{
  "error": [],
  "result": [
    {
      "asset": "XXBT",
      "method": "Bitcoin",
      "method_id": "12fca2ad-edae-4d8c-acbb-4a424c1fbdeb",
      "network": "Bitcoin",
      "network_id": "ee9d686d-aeb6-4e61-9d83-448e3a7511f3",
      "minimum": "0.0004",
      "fee": {
        "aclass": "currency",
        "asset": "XXBT",
        "fee": "0.00001500"
      }
    },
    {
      "asset": "XXBT",
      "method": "Bitcoin Lightning",
      "method_id": "1ac8da36-8eec-4ed0-977a-82e4b50f2e49",
      "network": "Lightning",
      "network_id": "03ed9b12-29f1-4dc3-8d05-bd58e3798518",
      "minimum": "0.00001",
      "fee": {
        "aclass": "currency",
        "asset": "XXBT",
        "fee": "0",
        "fee_percentage": "0.1"
      }
    }
  ]
}

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.

Authorizations

API-Key
string
header
required

The "API-Key" header should contain your API key.

API-Sign
string
header
required

Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.

Body

application/json
nonce
integer<int64>
required

Nonce used in construction of API-Sign header

asset
string

Filter methods for specific asset

aclass
enum<string>
default:currency

Filter methods for specific asset class

Available options:
currency,
tokenized_asset
network
string

Filter methods for specific network

rebase_multiplier
enum<string> | null
default:rebased

Optional parameter for viewing xstocks data.

  • rebased: Display in terms of underlying equity.
  • base: Display in terms of SPV tokens.
Available options:
rebased,
base

Response

200 - application/json

Withdrawal methods retrieved.

result
withdrawalMethods · object[]

Withdrawal Methods

error
string[]

Kraken API error