Skip to main content

Retrieve banking details

GET 

/v1/baas/virtual-accounts/banking-details/:walletId

This endpoint returns the banking details for deposit instructions related to a specified wallet.

Transfer Types:

  • SWIFT: International wire transfers
  • ACH: US domestic ACH transfers (requires dedicated account number)
  • FEDWIRE: US domestic wire transfers (works with or without dedicated account number)

Note: ACH transfers require a dedicated account number to be assigned to the wallet first. For accounts without a dedicated account number, FedWire returns a reference field with the beneficiary account number.

Request

Path Parameters

    walletId stringrequired

Query Parameters

    type string

    Possible values: [SWIFT, ACH, FEDWIRE]

    Type of banking details to retrieve (defaults to SWIFT if not provided)

Responses

Banking details retrieved with success.

Schema

    traceId string
    message string

    data

    object

    beneficiary

    object

    required

    Beneficiary information

    name stringrequired

    Beneficiary name

    address stringrequired

    Beneficiary address

    account_number string

    Account number (may be absent if dedicated account number is not available)

    beneficiary_bank

    object

    required

    Beneficiary bank information

    name stringrequired

    Bank name

    swift string

    SWIFT BIC code (for SWIFT transfers)

    routing_number string

    ABA/Routing number (for ACH and FedWire transfers)

    bank_address stringrequired

    Bank address

    intermediary_bank

    object

    required

    Intermediary bank information

    name stringrequired

    Intermediary bank name

    routing_number stringrequired

    Routing number

    bic_code stringrequired

    BIC code

Loading...