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

# Get bank details

> Retrieves where to send a bank transfer to fund the master collateral account. The project must be enabled for bank transfer funding, or the response is `FIAT_DEPOSITS_NOT_ENABLED`. Always quote the returned `reference` on the transfer, and read these details fresh before each transfer rather than storing them - an account can be closed by the bank, and a transfer to a closed account has to be recalled. Sandbox returns placeholder details for an account no wire can reach; simulate a deposit instead of sending one.



## OpenAPI

````yaml /api-reference/openapi.json get /fiat-deposits/bank-details
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sg.sandbox.api.reap.global
    description: Singapore sandbox
  - url: https://sg.prod.api.reap.global
    description: Singapore production
  - url: https://mx.sandbox.api.reap.global
    description: Mexico sandbox
  - url: https://mx.prod.api.reap.global
    description: Mexico production
  - url: https://sandbox.api.reap.global
    description: Singapore sandbox (alias)
  - url: https://prod.api.reap.global
    description: Singapore production (alias)
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Crypto Withdrawals
  - name: Disputes
  - name: Fiat Deposits
  - name: Fraud Alerts
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
  - name: Agentic
paths:
  /fiat-deposits/bank-details:
    get:
      tags:
        - Fiat Deposits
      summary: Get bank details
      description: >-
        Retrieves where to send a bank transfer to fund the master collateral
        account. The project must be enabled for bank transfer funding, or the
        response is `FIAT_DEPOSITS_NOT_ENABLED`. Always quote the returned
        `reference` on the transfer, and read these details fresh before each
        transfer rather than storing them - an account can be closed by the
        bank, and a transfer to a closed account has to be recalled. Sandbox
        returns placeholder details for an account no wire can reach; simulate a
        deposit instead of sending one.
      operationId: getBankDetails_fiat-deposits
      parameters:
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Bank transfer instructions for funding the master collateral account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FiatDepositBankDetails'
        '400':
          description: Bank transfer funding is not enabled for this project
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: FIAT_DEPOSITS_NOT_ENABLED
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: FiatDepositsNotEnabledError
components:
  schemas:
    FiatDepositBankDetails:
      type: object
      properties:
        beneficiaryName:
          type: string
          examples:
            - Reap Technologies Limited
          description: Name the transfer must be made out to
        beneficiaryAddress:
          $ref: '#/components/schemas/FiatDepositBeneficiaryAddress'
        accountNumber:
          type: string
          examples:
            - '79388003011'
          description: Account number to transfer to
        bankName:
          type: string
          examples:
            - DBS Bank (Hong Kong) Limited
          description: Bank holding the account
        bankAddress:
          type: string
          examples:
            - >-
              18th Floor, The Center, 99 Queen's Road Central, Central, Hong
              Kong
          description: Postal address of the bank
        swiftCode:
          type: string
          examples:
            - DHBKHKHH
          description: SWIFT/BIC code, for international transfers
        bankCode:
          type: string
          examples:
            - '016'
          description: Domestic clearing code for the bank
        branchCode:
          type: string
          examples:
            - '478'
          description: Domestic clearing code for the branch
        reference:
          type: string
          examples:
            - A1B2C3D4
          description: >-
            Reference the sender must quote on the transfer. The account can be
            shared with other Reap customers, in which case the reference is
            what identifies the transfer as yours - a transfer without it may be
            delayed or returned. It stays the same on every transfer.
      required:
        - beneficiaryName
        - beneficiaryAddress
        - accountNumber
        - bankName
        - bankAddress
        - swiftCode
        - bankCode
        - branchCode
        - reference
      description: Where to send a bank transfer to fund the account
    FiatDepositBeneficiaryAddress:
      type: object
      properties:
        street:
          anyOf:
            - type: string
            - type: 'null'
          description: Street address of the beneficiary
        city:
          anyOf:
            - type: string
            - type: 'null'
          description: City of the beneficiary
        state:
          anyOf:
            - type: string
            - type: 'null'
          description: State or region of the beneficiary
        postalCode:
          anyOf:
            - type: string
            - type: 'null'
          description: Postal code
        country:
          anyOf:
            - type: string
            - type: 'null'
          description: Country of the beneficiary
      required:
        - street
        - city
        - state
        - postalCode
        - country
      description: >-
        Beneficiary address, as held by the bank. A component the bank does not
        hold for the account is `null`.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````