> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kraken.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get withdraw methods

> Retrieve a list of withdrawal methods available for a specified vault.



## OpenAPI

````yaml /openapi/custody-rest.yaml post /0/private/WithdrawMethods
openapi: 3.0.0
info:
  title: REST API
  version: 1.1.0
  description: ''
servers:
  - url: https://api.kraken.com
    description: Production Server
security:
  - API-Key: []
    API-Sign: []
tags:
  - name: Portfolios
  - name: Transfers
  - name: Tasks
paths:
  /0/private/WithdrawMethods:
    post:
      tags:
        - Transfers
      summary: Get withdraw methods
      description: Retrieve a list of withdrawal methods available for a specified vault.
      operationId: withdrawMethods
      parameters:
        - $ref: '#/components/parameters/xVaultId'
      requestBody:
        $ref: '#/components/requestBodies/withdrawMethods'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/withdrawMethods'
          description: ''
components:
  parameters:
    xVaultId:
      in: header
      name: x-vault-id
      description: Vault ID or Vault IIBAN
      schema:
        type: string
        pattern: >-
          (^V[A-Z2-7]{12}[ACEGIKMOQSUWY246]$|AA[A-Z0-9]{2} ?[A-Z0-9]{4}
          ?[A-Z0-9]{4} ?[A-Z0-9]{4})
        minLength: 12
        maxLength: 19
      example: VOBJAQBMOKYR3K or AA73 N84G ZI3B MCFQ
      x-selected-account: true
      style: simple
      required: true
  requestBodies:
    withdrawMethods:
      required: true
      content:
        application/json:
          schema:
            type: object
            description: >-
              This endpoint returns a list of withdrawal methods available for
              the user
            required:
              - nonce
              - category
            properties:
              nonce:
                $ref: '#/components/schemas/nonce'
              asset:
                type: string
                description: Filter by asset
                nullable: true
                minLength: 1
                maxLength: 16
              category:
                type: string
                enum:
                  - custody
              aclass:
                type: string
                description: Filter by asset class
                default: currency
              network:
                type: string
                description: Filter by network
                nullable: true
  schemas:
    withdrawMethods:
      type: object
      required:
        - error
      properties:
        error:
          type: array
          items:
            description: General API error.
            type: object
            properties:
              severity:
                description: API error severity.
                type: string
                enum:
                  - E
                  - W
              errorClass:
                type: string
              type:
                type: string
              errorMessage:
                nullable: true
                type: string
            required:
              - errorClass
              - severity
              - type
        result:
          type: array
          nullable: true
          items:
            type: object
            required:
              - asset
            properties:
              asset:
                type: string
                description: Name of the asset
                minLength: 1
                maxLength: 16
              method_id:
                type: string
                description: Id of the withdrawal method
                nullable: true
              method:
                type: string
                description: Name of the withdrawal method
                nullable: true
              network_id:
                type: string
                description: Id of the blockchain/network of the method
                nullable: true
              network:
                type: string
                description: The blockchain/network of the method
                nullable: true
              minimum:
                description: Minimum that can be withdrawn right now
                nullable: true
                type: string
              limits:
                type: array
                nullable: true
                description: >-
                  Limits that are applicable for the user associated with the
                  funding method
                items:
                  type: object
                  required:
                    - limit_type
                    - limits
                  properties:
                    limit_type:
                      type: string
                      description: The type of the limit that is applicable for the user
                    description:
                      type: string
                      nullable: true
                      description: Brief description of the limit type
                    limits:
                      type: object
                      description: >-
                        Maximum and remaining limit a user is allowed for each
                        rolling window
                      additionalProperties:
                        type: object
                        required:
                          - maximum
                          - remaining
                        properties:
                          remaining:
                            description: Remaining limit the user has
                            oneOf:
                              - type: string
                                title: string
                              - type: integer
                                title: integer
                              - type: number
                                title: number
                          maximum:
                            description: Maximum limit the user is allowed
                            oneOf:
                              - type: string
                                title: string
                              - type: integer
                                title: integer
                              - type: number
                                title: number
              fee:
                type: object
                nullable: true
                description: The fees associated with this method
                required:
                  - aclass
                  - asset
                  - fee
                properties:
                  aclass:
                    type: string
                    description: The asset class for the fee
                    enum:
                      - currency
                      - forex
                      - equity
                      - equitypair
                      - nft
                      - volume
                  asset:
                    type: string
                    description: The asset for the fee
                    minLength: 1
                    maxLength: 16
                  fee:
                    description: The fee amount
                    type: string
                  fee_percentage:
                    description: The percentage rate of the fee applied to an amount.
                    nullable: true
                    type: string
    nonce:
      description: Nonce used in construction of `API-Sign` header
      type: integer
      format: int64
  securitySchemes:
    API-Key:
      type: apiKey
      description: The "API-Key" header should contain your API key.
      name: API-Key
      in: header
    API-Sign:
      type: apiKey
      description: >-
        Authenticated requests should be signed with the "API-Sign" header,
        using a signature generated with your private key, nonce, encoded
        payload, and URI path.
      name: API-Sign
      in: header

````