Due Blockchain Transfers API
The Blockchain Transfers API from Due — 5 operation(s) for blockchain transfers.
The Blockchain Transfers API from Due — 5 operation(s) for blockchain transfers.
openapi: 3.0.3
info:
title: Due Account Blockchain Transfers API
version: v1
description: 'Due provides borderless payment infrastructure: cross-border transfers, fiat<->stablecoin on/off-ramps, virtual accounts, FX rates, KYC/KYB onboarding, non-custodial MPC wallets (Vault), and webhooks. Assembled by API Evangelist from Due''s per-operation OpenAPI fragments published on due.readme.io.'
contact:
email: demo@due.network
url: https://www.opendue.com
servers:
- url: https://api.due.network
description: Production
- url: https://api.sandbox.due.network
description: Sandbox
security:
- BearerAuth: []
tags:
- name: Blockchain Transfers
paths:
/v1/token_transfers/{address}/{id}:
parameters:
- $ref: '#/components/parameters/DueAccountIdHeader'
get:
summary: Get token transfer
tags:
- Blockchain Transfers
parameters:
- in: path
name: address
required: true
schema:
type: string
- in: path
name: id
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/transfers_models_v2.TokenTransfer'
operationId: get_v1-token-transfers-address-id
/v1/token_transfers/{address}:
parameters:
- $ref: '#/components/parameters/DueAccountIdHeader'
get:
summary: List token transfers
tags:
- Blockchain Transfers
parameters:
- in: path
name: address
required: true
schema:
type: string
- in: query
name: next
description: Cursor for pagination to fetch the next set of results.
schema:
type: string
- in: query
name: order
description: Order in which results should be returned (e.g., `asc`, `desc`).
schema:
type: string
- in: query
name: limit
description: Number of results to return per page.
schema:
type: integer
format: int32
- in: query
name: startDate
description: Start date for filtering results (ISO 8601 format).
schema:
type: string
format: date-time
- in: query
name: endDate
description: Start date for filtering results (ISO 8601 format).
schema:
type: string
format: date-time
- in: query
name: includeEmpty
schema:
type: boolean
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/repository.CursorPage--transfers_models_v2.TokenTransfer'
operationId: get_v1-token-transfers-address
/v1/transfer_intents/{id}:
parameters:
- $ref: '#/components/parameters/DueAccountIdHeader'
get:
summary: Get transfer intent
description: Get a specific transfer intent by id.
tags:
- Blockchain Transfers
parameters:
- in: path
name: id
description: Unique identifier for the resource.
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/transfers_models_v2.TransferIntent'
operationId: get_v1-transfer-intents-id
/v1/transfer_intents/submit:
parameters:
- $ref: '#/components/parameters/DueAccountIdHeader'
post:
summary: Submit transfer intent
description: Submit transfer intent for an execution on blockchain.
tags:
- Blockchain Transfers
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/transfers_models_v2.TransferIntent'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/transfers_models_v2.TransferIntent'
operationId: post_v1-transfer-intents-submit
/v1/transfer_intents:
parameters:
- $ref: '#/components/parameters/DueAccountIdHeader'
post:
summary: Create transfer intent
description: Creates an arbitrary transfer intent for a given set of tokens (in and out) and networks
tags:
- Blockchain Transfers
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/transfers_dto_v2.TransferIntentRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/transfers_models_v2.TransferIntent'
operationId: post_v1-transfer-intents
components:
schemas:
account.SolanaAccount:
type: object
properties:
address:
type: array
items:
type: integer
format: int32
schema:
type: string
required:
- address
- schema
account.BankAccountDetailsDO:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
accountNumber:
type: string
bankAccountType:
type: string
idType:
type: string
idNumber:
type: string
taxId:
type: string
schema:
type: string
required:
- accountType
- financialInstitutionId
- accountNumber
- bankAccountType
- schema
account.BankAccountDetailsUK:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
accountNumber:
type: string
sortCode:
type: string
schema:
type: string
required:
- accountType
- accountNumber
- sortCode
- schema
account.QRAccountBrazilDetails:
type: object
properties:
emv:
type: string
pixKey:
type: string
name:
type: string
nin:
type: string
financialInstitutionId:
type: string
branchNumber:
type: string
accountNumber:
type: string
bankAccountType:
type: string
schema:
type: string
required:
- emv
- schema
account.BankAccountDetailsAU:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
bankName:
type: string
bsbCode:
type: string
accountNumber:
type: string
beneficiaryAddress:
$ref: '#/components/schemas/account.MailingAddress'
schema:
type: string
required:
- accountType
- bsbCode
- accountNumber
- beneficiaryAddress
- schema
account.BankAccountDetailsPH:
type: object
properties:
beneficiaryName:
type: string
bankName:
type: string
financialInstitutionId:
type: string
accountNumber:
type: string
emv:
type: string
schema:
type: string
required:
- beneficiaryName
- financialInstitutionId
- accountNumber
- schema
account.BankAccountDetailsPK:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
accountNumber:
type: string
schema:
type: string
required:
- accountType
- financialInstitutionId
- accountNumber
- schema
account.BankAccountDetailsCO:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
bankAccountType:
type: string
accountNumber:
type: string
idType:
type: string
idNumber:
type: string
schema:
type: string
required:
- accountType
- financialInstitutionId
- bankAccountType
- accountNumber
- idNumber
- schema
account.BankAccountDetailsINUPI:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
accountNumber:
type: string
schema:
type: string
required:
- accountType
- accountNumber
- schema
account.BankAccountDetailsBR:
type: object
properties:
name:
type: string
nin:
type: string
financialInstitutionId:
type: string
branchNumber:
type: string
accountNumber:
type: string
bankAccountType:
type: string
bankName:
type: string
schema:
type: string
required:
- name
- nin
- financialInstitutionId
- branchNumber
- accountNumber
- bankAccountType
- schema
account.BankAccountDetailsEG:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
IBAN:
type: string
schema:
type: string
required:
- accountType
- IBAN
- schema
transfers_models_v2.TokenTransfer:
type: object
properties:
id:
type: string
fullId:
type: string
txHash:
type: string
networkId:
type: string
eventIdx:
type: integer
format: int64
blockNumber:
type: integer
format: int64
token:
type: string
owner:
type: string
from:
type: string
to:
type: string
amount:
type: string
transferIntentId:
type: string
transferIntent:
$ref: '#/components/schemas/transfers_models_v2.TransferIntent'
transfer:
$ref: '#/components/schemas/transfers_models_v2.Transfer'
addedAt:
type: string
format: date-time
createdAt:
type: string
format: date-time
repository.CursorPage--transfers_models_v2.TokenTransfer:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/transfers_models_v2.TokenTransfer'
next:
type: string
account.TransferInstructionsExternalLink:
type: object
properties:
url:
type: string
kind:
type: string
required:
- kind
account.BankAccountDetailsCR:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
IBAN:
type: string
phoneNumber:
type: string
idType:
type: string
idNumber:
type: string
taxId:
type: string
schema:
type: string
required:
- accountType
- financialInstitutionId
- IBAN
- phoneNumber
- schema
account.BankAccountDetailsIL:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
IBAN:
type: string
schema:
type: string
required:
- accountType
- IBAN
- schema
account.BankAccountDetailsSV:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
bankAccountType:
type: string
accountNumber:
type: string
phoneNumber:
type: string
schema:
type: string
required:
- accountType
- financialInstitutionId
- bankAccountType
- accountNumber
- phoneNumber
- schema
account.EWalletID:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
phoneNumber:
type: string
financialInstitutionId:
type: string
schema:
type: string
required:
- accountType
- phoneNumber
- financialInstitutionId
- schema
relay_signable.Siwsol:
type: string
account.BankAccountDetailsSwiftIBAN:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
bankName:
type: string
bankAddress:
type: string
IBAN:
type: string
swiftCode:
type: string
currency:
type: string
beneficiaryAddress:
$ref: '#/components/schemas/account.MailingAddress'
schema:
type: string
required:
- accountType
- IBAN
- swiftCode
- currency
- beneficiaryAddress
- schema
account.BankAccountDetailsUSJPM:
type: object
properties:
bankName:
type: string
bankAddress:
type: string
accountName:
type: string
accountNumber:
type: string
routingNumberACH:
type: string
routingNumberWire:
type: string
routingNumberRTP:
type: string
schema:
type: string
required:
- bankName
- accountName
- accountNumber
- routingNumberACH
- routingNumberWire
- routingNumberRTP
- schema
account.BankAccountDetailsIBANLegacy:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
bankName:
type: string
IBAN:
type: string
schema:
type: string
required:
- accountType
- IBAN
- schema
account.EWalletAlipay:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
phoneNumber:
type: string
schema:
type: string
required:
- accountType
- phoneNumber
- schema
relay_signable.SiweMessage:
type: string
description: See https://eips.ethereum.org/EIPS/eip-4361#message-format
account.BankAccountDetailsMX:
type: object
properties:
bankName:
type: string
clabe:
type: string
beneficiaryName:
type: string
email:
type: string
schema:
type: string
required:
- clabe
- beneficiaryName
- schema
account.BankAccountDetailsCL:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
accountNumber:
type: string
bankAccountType:
type: string
idType:
type: string
idNumber:
type: string
beneficiaryCity:
type: string
taxId:
type: string
schema:
type: string
required:
- accountType
- financialInstitutionId
- accountNumber
- bankAccountType
- beneficiaryCity
- schema
relay_signable.TronTransaction:
type: object
properties:
raw_data:
$ref: '#/components/schemas/relay_signable.TronTransactionRawData'
raw_data_hex:
type: string
txID:
type: string
kind:
type: string
required:
- kind
account.BankAccountDetailsCN:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
accountNumber:
type: string
beneficiaryAddress:
$ref: '#/components/schemas/account.MailingAddress'
schema:
type: string
required:
- accountType
- financialInstitutionId
- accountNumber
- beneficiaryAddress
- schema
account.EWalletWechat:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
phoneNumber:
type: string
schema:
type: string
required:
- accountType
- phoneNumber
- schema
account.BankAccountDetailsJP:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
bankName:
type: string
accountNumber:
type: string
branchNumber:
type: string
nationalityCountry3:
type: string
phoneNumber:
type: string
beneficiaryAddress:
$ref: '#/components/schemas/account.MailingAddress'
schema:
type: string
required:
- accountType
- financialInstitutionId
- accountNumber
- branchNumber
- phoneNumber
- beneficiaryAddress
- schema
apitypes.Type:
type: object
properties:
name:
type: string
type:
type: string
relay_signable.TypedDataWithMessage--relay_signable.ITypedDataMessage:
type: object
properties:
types:
type: object
additionalProperties:
type: array
items:
$ref: '#/components/schemas/apitypes.Type'
primaryType:
type: string
domain:
type: object
message:
type: object
kind:
type: string
required:
- kind
transfers_models_v2.TransferSide:
type: object
properties:
amount:
type: string
fee:
type: string
applicationFee:
type: string
totalFee:
type: string
currency:
type: string
rail:
type: string
id:
type: string
label:
type: string
details:
oneOf:
- $ref: '#/components/schemas/account.BankAccountDetailsSA'
- $ref: '#/components/schemas/account.EWalletGT'
- $ref: '#/components/schemas/account.BankAccountDetailsSV'
- $ref: '#/components/schemas/account.BankAccountDetailsHN'
- $ref: '#/components/schemas/account.EWalletPK'
- $ref: '#/components/schemas/account.EWalletPH'
- $ref: '#/components/schemas/account.BankAccountDetailsSwiftIBAN'
- $ref: '#/components/schemas/account.EWalletAlipay'
- $ref: '#/components/schemas/account.EWalletID'
- $ref: '#/components/schemas/account.EWalletDO'
- $ref: '#/components/schemas/account.SolanaAccount'
- $ref: '#/components/schemas/account.BankAccountDetailsCL'
- $ref: '#/components/schemas/account.BankAccountAfricaDetails'
- $ref: '#/components/schemas/account.BankAccountDetailsBD'
- $ref: '#/components/schemas/account.BankAccountDetailsJP'
- $ref: '#/components/schemas/account.BankAccountDetailsAU'
- $ref: '#/components/schemas/account.BankAccountDetailsCA'
- $ref: '#/components/schemas/account.BankAccountDetailsSwift'
- $ref: '#/components/schemas/account.BankAccountDetailsDO'
- $ref: '#/components/schemas/account.BankAccountDetailsJM'
- $ref: '#/components/schemas/account.EWallet'
- $ref: '#/components/schemas/account.MomoAccountAfricaDetails'
- $ref: '#/components/schemas/account.MomoSenderAccountAfricaDetails'
- $ref: '#/components/schemas/account.BankAccountDetailsSG'
- $ref: '#/components/schemas/account.BankAccountDetailsTH'
- $ref: '#/components/schemas/account.BankAccountDetailsTR'
- $ref: '#/components/schemas/account.BankAccountDetailsCN'
- $ref: '#/components/schemas/account.BankAccountDetailsIN'
- $ref: '#/components/schemas/account.BankAccountDetailsBR'
- $ref: '#/components/schemas/account.QRAccountBrazilDetails'
- $ref: '#/components/schemas/account.BankAccountDetailsCR'
- $ref: '#/components/schemas/account.BankAccountDetailsGT'
- $ref: '#/components/schemas/account.BankAccountDetailsEG'
- $ref: '#/components/schemas/account.BankAccountDetailsPKIBAN'
- $ref: '#/components/schemas/account.BankAccountDetailsINUPI'
- $ref: '#/components/schemas/account.EvmAccount'
- $ref: '#/components/schemas/account.BankAccountDetailsUK'
- $ref: '#/components/schemas/account.BankAccountDetailsMX'
- $ref: '#/components/schemas/account.BankAccountDetailsIBANLegacy'
- $ref: '#/components/schemas/account.BankAccountDetailsMY'
- $ref: '#/components/schemas/account.BankAccountDetailsPH'
- $ref: '#/components/schemas/account.BankAccountDetailsID'
- $ref: '#/components/schemas/account.BankAccountDetailsVN'
- $ref: '#/components/schemas/account.BankAccountDetailsCOBreb'
- $ref: '#/components/schemas/account.StarknetAccount'
- $ref: '#/components/schemas/account.BankAccountDetailsBO'
- $ref: '#/components/schemas/account.BankAccountDetailsIL'
- $ref: '#/components/schemas/account.EWalletWechat'
- $ref: '#/components/schemas/account.BankAccountDetailsKR'
- $ref: '#/components/schemas/account.BankAccountDetailsUSJPM'
- $ref: '#/components/schemas/account.TronAccount'
- $ref: '#/components/schemas/account.BankAccountDetailsMena'
- $ref: '#/components/schemas/account.BankAccountDetailsCO'
- $ref: '#/components/schemas/account.BankAccountDetailsHK'
- $ref: '#/components/schemas/account.BankAccountDetailsPK'
- $ref: '#/components/schemas/account.BankAccountDetailsUS'
- $ref: '#/components/schemas/account.BankAccountDetailsSepa'
- $ref: '#/components/schemas/account.BankAccountDetailsBRPix'
discriminator:
propertyName: schema
mapping:
bank_africa: '#/components/schemas/account.BankAccountAfricaDetails'
bank_au: '#/components/schemas/account.BankAccountDetailsAU'
bank_bd: '#/components/schemas/account.BankAccountDetailsBD'
bank_bo: '#/components/schemas/account.BankAccountDetailsBO'
bank_br: '#/components/schemas/account.BankAccountDetailsBR'
bank_br_pix: '#/components/schemas/account.BankAccountDetailsBRPix'
bank_ca: '#/components/schemas/account.BankAccountDetailsCA'
bank_cl: '#/components/schemas/account.BankAccountDetailsCL'
bank_cn: '#/components/schemas/account.BankAccountDetailsCN'
bank_co_breb: '#/components/schemas/account.BankAccountDetailsCOBreb'
bank_colombia: '#/components/schemas/account.BankAccountDetailsCO'
bank_cr: '#/components/schemas/account.BankAccountDetailsCR'
bank_do: '#/components/schemas/account.BankAccountDetailsDO'
bank_eg: '#/components/schemas/account.BankAccountDetailsEG'
bank_gt: '#/components/schemas/account.BankAccountDetailsGT'
bank_hk: '#/components/schemas/account.BankAccountDetailsHK'
bank_hn: '#/components/schemas/account.BankAccountDetailsHN'
bank_iban: '#/components/schemas/account.BankAccountDetailsIBANLegacy'
bank_id: '#/components/schemas/account.BankAccountDetailsID'
bank_il: '#/components/schemas/account.BankAccountDetailsIL'
bank_in: '#/components/schemas/account.BankAccountDetailsIN'
bank_in_upi: '#/components/schemas/account.BankAccountDetailsINUPI'
bank_jm: '#/components/schemas/account.BankAccountDetailsJM'
bank_jp: '#/components/schemas/account.BankAccountDetailsJP'
bank_kr: '#/components/schemas/account.BankAccountDetailsKR'
bank_mena: '#/components/schemas/account.BankAccountDetailsMena'
bank_mexico: '#/components/schemas/account.BankAccountDetailsMX'
bank_my: '#/components/schemas/account.BankAccountDetailsMY'
bank_ph: '#/components/schemas/account.BankAccountDetailsPH'
bank_pk: '#/components/schemas/account.BankAccountDetailsPK'
bank_pk_iban: '#/components/schemas/account.BankAccountDetailsPKIBAN'
bank_sa: '#/components/schemas/account.BankAccountDetailsSA'
bank_sepa: '#/components/schemas/account.BankAccountDetailsSepa'
bank_sg: '#/components/schemas/account.BankAccountDetailsSG'
bank_sv: '#/components/schemas/account.BankAccountDetailsSV'
bank_swift: '#/components/schemas/account.BankAccountDetailsSwift'
bank_swift_iban: '#/components/schemas/account.BankAccountDetailsSwiftIBAN'
bank_th: '#/components/schemas/account.BankAccountDetailsTH'
bank_tr: '#/components/schemas/account.BankAccountDetailsTR'
bank_uk: '#/components/schemas/account.BankAccountDetailsUK'
bank_us: '#/components/schemas/account.BankAccountDetailsUS'
bank_us_jpm: '#/components/schemas/account.BankAccountDetailsUSJPM'
bank_vn: '#/components/schemas/account.BankAccountDetailsVN'
evm: '#/components/schemas/account.EvmAccount'
ewallet: '#/components/schemas/account.EWallet'
ewallet_alipay: '#/components/schemas/account.EWalletAlipay'
ewallet_do: '#/components/schemas/account.EWalletDO'
ewallet_gt: '#/components/schemas/account.EWalletGT'
ewallet_id: '#/components/schemas/account.EWalletID'
ewallet_ph: '#/components/schemas/account.EWalletPH'
ewallet_pk: '#/components/schemas/account.EWalletPK'
ewallet_wechatpay: '#/components/schemas/account.EWalletWechat'
momo_africa: '#/components/schemas/account.MomoAccountAfricaDetails'
momo_africa.sender: '#/components/schemas/account.MomoSenderAccountAfricaDetails'
qr_brazil: '#/components/schemas/account.QRAccountBrazilDetails'
solana: '#/components/schemas/account.SolanaAccount'
starknet: '#/components/schemas/account.StarknetAccount'
tron: '#/components/schemas/account.TronAccount'
memo:
type: string
purposeCode:
type: string
confirmation:
oneOf:
- $ref: '#/components/schemas/transaction_confirmation.TransactionHash'
- $ref: '#/components/schemas/transaction_confirmation.TransactionPH'
discriminator:
propertyName: kind
mapping:
transaction_hash: '#/components/schemas/transaction_confirmation.TransactionHash'
transaction_ph: '#/components/schemas/transaction_confirmation.TransactionPH'
virtualAccountId:
type: string
account.MailingAddress:
type: object
properties:
street_line_1:
type: string
street_line_2:
type: string
city:
type: string
postal_code:
type: string
country:
type: string
state:
type: string
required:
- street_line_1
- city
- postal_code
- country
account.BankAccountDetailsHK:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
financialInstitutionId:
type: string
accountNumber:
type: string
schema:
type: string
required:
- accountType
- financialInstitutionId
- accountNumber
- schema
account.EWalletGT:
type: object
properties:
accountType:
type: string
firstName:
type: string
lastName:
type: string
companyName:
type: string
phoneNumber:
type: string
financialInstitutionId:
type: string
schema:
type: string
required:
- accountType
- phoneNumber
- financialInstitutionId
- schema
account.BankAccountDetailsCOBreb:
type: object
properties:
name:
type: string
key:
type: string
schema:
type: string
required:
- name
- key
- schema
account.TransferInstructionsDisposableAccount:
type: object
properties:
details:
oneOf:
- $ref: '#/components/schemas/account.BankAccountDetailsSA'
- $ref: '#/components/schemas/account.EWalletGT'
- $ref: '#/components/schemas/account.BankAccountDetailsSV'
- $ref: '#/components/schemas/account.BankAccountDetailsHN'
- $ref: '#/components/schemas/account.EWalletPK'
- $ref: '#/components/schemas/account.EWalletPH'
- $ref: '#/components/schemas/account.BankAccountDetailsSwiftIBAN'
- $ref: '#/components/schemas/account.EWalletAlipay'
- $ref: '#/components/schemas/account.EWalletID'
- $ref: '#/components/schemas/account.EWalletDO'
- $ref: '#/components/schemas/account.SolanaAccount'
- $ref: '#/components/schemas/account.BankAccountDetailsCL'
- $ref: '#/components/schemas/account.BankAccountAfricaDetails'
- $ref: '#/components/schemas/account.BankAccountDetailsBD'
- $ref: '#/components/schemas/account.BankAccountDetailsJP'
- $ref: '#/components/schemas/account.BankAccountDetailsAU'
- $ref: '#/components/schemas/account.BankAccountDetailsCA'
- $ref: '#/components/schemas/account.BankAccountDetailsSwift'
- $ref: '#/components/schemas/account.BankAccountDetailsDO'
- $ref: '#/components/schemas/account.BankAccountDetailsJM'
- $ref: '#/components/schemas/account.EWallet'
- $ref: '#/components/schemas/account.MomoAccountAfricaDetails'
# --- truncated at 32 KB (70 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/due/refs/heads/main/openapi/due-blockchain-transfers-api-openapi.yml