> ## 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 deposit methods

> Retrieve the available deposit funding methods for depositing a specific asset. The deposit method is required to retrieve deposit addresses using the [Get Deposit Addresses API](/docs/custody-api/deposit-addresses).



## OpenAPI

````yaml /openapi/custody-rest.yaml post /0/private/DepositMethods
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/DepositMethods:
    post:
      tags:
        - Portfolios
      summary: Get deposit methods
      description: >-
        Retrieve the available deposit funding methods for depositing a specific
        asset. The deposit method is required to retrieve deposit addresses
        using the [Get Deposit Addresses
        API](/docs/custody-api/deposit-addresses).
      operationId: depositMethods
      parameters:
        - $ref: '#/components/parameters/xVaultId'
      requestBody:
        $ref: '#/components/requestBodies/depositMethods'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/depositMethods'
          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:
    depositMethods:
      content:
        application/json:
          schema:
            type: object
            properties:
              nonce:
                $ref: '#/components/schemas/nonce'
              asset:
                default: ZUSD
                type: string
              category:
                type: string
                enum:
                  - custody
              aclass:
                default: currency
                type: string
            required:
              - nonce
              - category
      required: true
  schemas:
    depositMethods:
      type: object
      properties:
        result:
          nullable: true
          type: array
          items:
            type: object
            properties:
              method:
                type: string
                description: Name of deposit method
              limit:
                description: >-
                  Maximum net amount that can be deposited right now, or false
                  if no limit
                oneOf:
                  - type: string
                    title: string
                  - type: boolean
                    title: boolean
              fee:
                description: Amount of fees that will be paid
                type: string
              fee-percentage:
                nullable: true
                type: string
              address-setup-fee:
                nullable: true
                description: Whether or not method has an address setup fee
                type: string
              gen-address:
                nullable: true
                description: Whether new addresses can be generated for this method.
                type: boolean
              minimum:
                nullable: true
                description: Minimum net amount that can be deposited right now
                type: string
        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
      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

````