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

# Get transfer funding details

> Returns the immutable funding economics and the transfer-specific bank or crypto instructions. A pending intent without instructions is still being provisioned and may be polled.



## OpenAPI

````yaml /openapi.json get /v1/transfers/{id}/funding
openapi: 3.0.3
info:
  contact:
    email: support@yara.cash
    name: Yara API Support
  description: >-
    Merchant-facing wallets/address-as-a-service API for creating merchant
    receive addresses, inspecting balances, quoting transfers, and initiating
    payouts to whitelisted recipients.

    Public endpoints are for external integrators. Dashboard endpoints are
    gateway-to-environment surfaces protected by the external API gateway.
    Internal endpoints are platform/system surfaces protected by an internal
    token.
  license:
    name: Proprietary
  title: Yara External API - Public API
  version: '1.0'
servers:
  - url: https://api.yara.cash
security: []
paths:
  /v1/transfers/{id}/funding:
    get:
      tags:
        - public.transfers
      summary: Get transfer funding details
      description: >-
        Returns the immutable funding economics and the transfer-specific bank
        or crypto instructions. A pending intent without instructions is still
        being provisioned and may be polled.
      parameters:
        - description: Transfer ID
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferFundingResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    TransferFundingResponse:
      properties:
        data:
          $ref: '#/components/schemas/TransferFunding'
      type: object
    ErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorBody'
      type: object
    TransferFunding:
      properties:
        funding:
          $ref: '#/components/schemas/TransferFundingQuote'
        intent:
          $ref: '#/components/schemas/TransferFundingIntent'
        transfer_id:
          example: 76179a66-8695-47fd-bca4-310eaa816077
          type: string
        transfer_status:
          example: AWAITING_MERCHANT_FUNDING
          type: string
      type: object
    ErrorBody:
      properties:
        code:
          example: validation_error
          type: string
        message:
          example: invalid JSON body
          type: string
      type: object
    TransferFundingQuote:
      properties:
        expires_at:
          example: '2026-06-16T03:05:00Z'
          type: string
        fee:
          $ref: '#/components/schemas/TransferAmount'
        method:
          example: BANK_TRANSFER
          type: string
        rate:
          $ref: '#/components/schemas/TransferFundingRate'
        required_amount:
          $ref: '#/components/schemas/TransferAmount'
      type: object
    TransferFundingIntent:
      properties:
        bank_transfer:
          $ref: '#/components/schemas/TransferBankFundingInstructions'
        crypto_deposit:
          $ref: '#/components/schemas/TransferCryptoFundingInstructions'
        expires_at:
          type: string
        flag:
          $ref: '#/components/schemas/TransferFundingFlag'
        id:
          type: string
        method:
          example: BANK_TRANSFER
          type: string
        required_amount:
          $ref: '#/components/schemas/TransferAmount'
        status:
          example: PENDING
          type: string
      type: object
    TransferAmount:
      properties:
        asset:
          example: USDC
          type: string
        currency:
          example: USD
          type: string
        network:
          example: BASE
          type: string
        value:
          example: '100.00'
          type: string
      type: object
    TransferFundingRate:
      properties:
        base_currency:
          example: USD
          type: string
        quote_currency:
          example: NGN
          type: string
        value:
          example: '1600'
          type: string
      type: object
    TransferBankFundingInstructions:
      properties:
        account_name:
          example: Yara
          type: string
        account_number:
          example: '1234567890'
          type: string
        bank_code:
          example: '035'
          type: string
        bank_name:
          example: Wema Bank
          type: string
        narration:
          example: funding-76179a66869547fdbca4310eaa816077
          type: string
        reference:
          example: funding-76179a66869547fdbca4310eaa816077
          type: string
      type: object
    TransferCryptoFundingInstructions:
      properties:
        address:
          example: '0x1234'
          type: string
        asset:
          example: USDC
          type: string
        memo:
          type: string
        network:
          example: BASE
          type: string
        reference:
          example: funding-76179a66869547fdbca4310eaa816077
          type: string
      type: object
    TransferFundingFlag:
      properties:
        code:
          example: AMOUNT_MISMATCH
          type: string
        message:
          example: Funding amount does not match the expected amount
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'Public merchant API key. You can also send Authorization: ApiKey <key>.'
      in: header
      name: X-Yara-API-Key
      type: apiKey

````