Skip to main content
POST
/
0
/
private
/
WithdrawMethods
Get withdraw 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' \
  --header 'x-vault-id: <x-vault-id>' \
  --data '
{
  "nonce": 123,
  "category": "custody",
  "asset": "<string>",
  "aclass": "currency",
  "network": "<string>"
}
'
{
  "error": [
    {
      "severity": "E",
      "errorClass": "<string>",
      "type": "<string>",
      "errorMessage": "<string>"
    }
  ],
  "result": [
    {
      "asset": "<string>",
      "method_id": "<string>",
      "method": "<string>",
      "network_id": "<string>",
      "network": "<string>",
      "minimum": "<string>",
      "limits": [
        {
          "limit_type": "<string>",
          "limits": {},
          "description": "<string>"
        }
      ],
      "fee": {
        "aclass": "currency",
        "asset": "<string>",
        "fee": "<string>",
        "fee_percentage": "<string>"
      }
    }
  ]
}

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.

Headers

x-vault-id
string
required

Vault ID or Vault IIBAN

Required string length: 12 - 19
Pattern: (^V[A-Z2-7]{12}[ACEGIKMOQSUWY246]$|AA[A-Z0-9]{2} ?[A-Z0-9]{4} ?[A-Z0-9]{4} ?[A-Z0-9]{4})

Body

application/json

This endpoint returns a list of withdrawal methods available for the user

nonce
integer<int64>
required

Nonce used in construction of API-Sign header

category
enum<string>
required
Available options:
custody
asset
string | null

Filter by asset

Required string length: 1 - 16
aclass
string
default:currency

Filter by asset class

network
string | null

Filter by network

Response

200 - application/json
error
object[]
required
result
object[] | null