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

# Get withdraw addresses

> Retrieve a list of withdrawal addresses for a specified vault.



## OpenAPI

````yaml /openapi/custody-rest.yaml post /0/private/WithdrawAddresses
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/WithdrawAddresses:
    post:
      tags:
        - Transfers
      summary: Get withdraw addresses
      description: Retrieve a list of withdrawal addresses for a specified vault.
      operationId: withdrawAddresses
      parameters:
        - $ref: '#/components/parameters/xVaultId'
        - in: query
          name: preferred_asset_name
          deprecated: false
          schema:
            description: The preferred asset name to use
            default: alt
            type: string
            enum:
              - new
              - alt
          style: form
          allowEmptyValue: false
      requestBody:
        $ref: '#/components/requestBodies/withdrawAddresses'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/withdrawAddresses'
          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:
    withdrawAddresses:
      required: true
      content:
        application/json:
          schema:
            type: object
            properties:
              nonce:
                $ref: '#/components/schemas/nonce'
              aclass:
                description: Asset class of asset being withdrawn - defaults to Currency
                default: currency
                type: string
                enum:
                  - currency
                  - equity
                  - equity-pair
                  - forex
                  - nft
                  - volume
              asset:
                nullable: true
                description: The asset to query {?asset=}
                type: string
                minLength: 1
                maxLength: 16
              method:
                nullable: true
                description: The method used to withdraw to the address
                type: string
              key:
                nullable: true
                description: Withdrawal key name, as set up on your account
                type: string
              verified:
                nullable: true
                description: The verification status of the withdrawal address
                type: boolean
            required:
              - nonce
  schemas:
    withdrawAddresses:
      type: object
      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:
          nullable: true
          type: array
          items:
            type: object
            properties:
              address:
                nullable: true
                type: string
              asset:
                nullable: true
                type: string
                minLength: 1
                maxLength: 16
              method:
                nullable: true
                type: string
              key:
                nullable: true
                type: string
              verified:
                type: boolean
              memo:
                nullable: true
                type: string
              tag:
                nullable: true
                type: string
              networks:
                nullable: true
                type: array
                items:
                  description: Withdrawal rail (SWIFT, SEPA..)
                  type: string
            required:
              - verified
      required:
        - error
    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

````