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

# Get deposit instructions for an account

> Funding coordinates for one customer account (fiat bank details or stablecoin wallet). Account must be active with usable coordinates.



## OpenAPI

````yaml /api-reference/openapi.json get /partner/customers/{customer_id}/accounts/{account_id}/deposit-instructions
openapi: 3.1.0
info:
  title: Element Pay Partner API
  description: >-
    Provider-neutral fiat ↔ crypto ramps for partners. Discover corridors,
    create a binding quote, accept it, and receive webhooks. African local fiat
    (mobile money and bank) is auto-routed by corridor.
  version: 1.0.0
servers:
  - url: https://sandbox.elementpay.net/api/v1
    description: Sandbox
security:
  - APIKeyHeader: []
tags:
  - name: partner
    description: >-
      Corridor discovery, indicative rates, binding quotes, and order acceptance
      (including account currency conversion).
    x-group: Partner
  - name: partner-customers
    description: >-
      Vault KYC: requirements, create, list, get/update, documents, and submit
      (pcus_*).
    x-group: Customers
  - name: partner-customer-accounts
    description: >-
      Customer accounts and funding: open/list/get rails, deposit instructions,
      stablecoin sends, and same-currency fiat book transfers.
    x-group: Customer accounts
paths:
  /partner/customers/{customer_id}/accounts/{account_id}/deposit-instructions:
    get:
      tags:
        - partner-customer-accounts
      summary: Get deposit instructions for an account
      description: >-
        Funding coordinates for one customer account (fiat bank details or
        stablecoin wallet). Account must be active with usable coordinates.
      operationId: partner_customer_get_deposit_instructions
      parameters:
        - name: customer_id
          in: path
          required: true
          description: Public customer id returned by POST /partner/customers
          schema:
            type: string
            example: pcus_a1b2c3d4e5f6
          example: pcus_a1b2c3d4e5f6
        - name: account_id
          in: path
          required: true
          description: Account id from list/open
          schema:
            type: integer
            minimum: 1
            example: 21
          example: 21
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
              example:
                status: success
                message: Deposit instructions
                data:
                  account_id: 18
                  customer_id: pcus_a1b2c3d4e5f6
                  asset_type: fiat
                  currency: EUR
                  network: null
                  status: ready
                  account_holder_name: Jane Doe
                  account_number: DE89370400440532013000
                  bank_code: COBADEFF
                  bank_name: Example Bank
                  swift_bic: COBADEFFXXX
                  instructions: >-
                    Show the account holder name and these bank details to the
                    customer. They should send a bank transfer in the account
                    currency to this account.
              examples:
                fiat:
                  summary: Fiat IBAN / bank transfer
                  value:
                    status: success
                    message: Deposit instructions
                    data:
                      account_id: 18
                      customer_id: pcus_a1b2c3d4e5f6
                      asset_type: fiat
                      currency: EUR
                      network: null
                      status: ready
                      account_holder_name: Jane Doe
                      account_number: DE89370400440532013000
                      bank_code: COBADEFF
                      bank_name: Example Bank
                      swift_bic: COBADEFFXXX
                      instructions: >-
                        Show the account holder name and these bank details to
                        the customer. They should send a bank transfer in the
                        account currency to this account.
                stablecoin:
                  summary: Stablecoin wallet
                  value:
                    status: success
                    message: Deposit instructions
                    data:
                      account_id: 21
                      customer_id: pcus_a1b2c3d4e5f6
                      asset_type: stablecoin
                      currency: USDC
                      network: Base
                      status: ready
                      account_holder_name: Jane Doe
                      wallet_address: '0x40C2f2e0326bD1f647fbeB8732529e08B4DB309f'
                      chain_disclaimer: >-
                        Send only USDC on Base to this address. Funds sent on
                        the wrong network may be lost.
                      instructions: >-
                        Show the wallet address and network to the customer.
                        They must send the matching stablecoin on that network
                        only.
        '409':
          description: Banking gate not ready
          content:
            application/json:
              example:
                status: error
                message: Banking profile incomplete
                data:
                  deposit_account_status: pending
                  reason: banking_profile_incomplete
        '422':
          description: Coordinates not ready yet
          content:
            application/json:
              example:
                status: error
                message: Deposit instructions are not ready yet
                data:
                  account_id: 18
                  status: pending
                  hint: Poll GET account or wait for account.ready
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````