BPN OpenAPI
  1. Account Management
BPN OpenAPI
  • Getting Started
    • Introduction to BPN
    • Key Concepts & Terminology
    • Architecture Overview
  • Onboarding & Prerequisites
    • Product Demo
    • Sandbox & Test Environment
    • Signature Authentication Mechanism
  • Use Case
    • Transfer
    • Vault
    • On/Off Ramp
    • Compliance (Travel Rule Information Submission)
    • Fiat Collection(BRL PIX for example)
  • API Reference
    • Account Management
      • Inquiry Master VA Balance
        GET
      • Create Virtaul Account
        POST
      • Get Virtual Account Detail
        GET
      • List Virtual Account
        GET
      • Send Email Verify Code
        POST
      • Query bank info by account number
        POST
      • Payout via Virtual Account
        POST
      • Refund Virtual Account Order
        POST
      • Get Virtual Account Order Detail
        GET
      • List Virtual Account Orders
        GET
      • Submit Invoice
        POST
      • Get Invoice list Status
        GET
      • List Banks
        GET
      • Add Bank Account
        POST
      • List Bank Account
        GET
      • List RFI Sub Virtual Account
        GET
      • Get Sub Virtual Account RFI Template Info
        GET
      • Sub Virtual Account Submit RFI
        POST
    • Wallet
      • List Wallets
      • List Sub Account
      • Create Sub Account
      • Wallet Internal Transfer
      • Get Asset Balance
      • Get Deposit Address
      • Add Deposit Sender
      • Add Withdraw Whitelist
      • Delete Withdraw Whiltelist
      • Request Withdraw
      • Query Transaction History
    • FX
      • Inquery FX Rate
    • BPN Transactions
      • Get Stablecoin Quote
      • Create Stable Order
      • Get Order (Single) Detail
      • List Orders(Batch)
    • Reconciliation
      • Get Reconciliation Order List By Page
    • Crypto Payment Link
      • Create Payment Link
      • List Payment links
      • Get Curreny Network Config
    • Mock
      • Mock Virtual account Payin Order
  • Webhooks & Events
    • Resend Fail Webhook
    • Open Virtual Account Status
    • Virtual Account Payment Status
    • Virtual Account Invoice update
    • Transaction Status Notification
    • KYB Status Notification
    • Deposit Sender Detail Required
  • Appendix
    • Enum
    • Virtual Account(VA) Support List & KYB requirement
  • Release Notes & Changelog
    • Version History
  • Schemas
    • walletBalance
    • walletAddress
    • transactionRecord
  1. Account Management

List Bank Account

GET
/v1/account/list-account
Use this endpoint to retrieve the fiat accounts that have already been maintained under your tenant. It returns the current status, key details, and identifiers so you can review, audit, or reuse them in downstream flows (e.g., Transfer Estimation / Confirm Transfer, Sell).

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/account/list-account?accountId=&accountType=&networkType=&currency=&startTimestamp=&endTimestamp=&pageNum=0&pageSize=0&externalAccountId'

Responses

🟢200OK
application/json
Body

Example
{
    "status": 200,
    "data": [
        {
            "accountId": "35",
            "externalAccountId": "40",
            "bindStatus": "ipsum consequat",
            "accountHolderName": "Floyd O'Hara",
            "cpfOrCnpj": "ex laborum officia irure qui",
            "pixKey": "labore exercitation amet officia",
            "accountNumber": "80042263",
            "iban": "FI3358004930080008",
            "beneficiaryCountry": "elit velit esse",
            "beneficiaryState": "California",
            "beneficiaryCity": "Gutmannstead",
            "beneficiaryPostalCode": "43054-8053",
            "beneficiaryAddress": "406 Crona Place",
            "bankCode": "76",
            "bankSwiftCode": "ABTTGUZX",
            "bankName": "Miss Johanna Schuppe",
            "bankCountry": "ad",
            "bankState": "Tennessee",
            "bankCity": "Bauchworth",
            "bankPostalCode": "84860-8038",
            "bankAddress": "95300 S Market Street",
            "createTime": "2025-12-28 13:41:14"
        },
        {
            "accountId": "25",
            "externalAccountId": "42",
            "bindStatus": "ex in labore",
            "accountHolderName": "Katie D'Amore Sr.",
            "cpfOrCnpj": "incididunt ullamco",
            "pixKey": "officia",
            "accountNumber": "93369455",
            "iban": "KZ341959269873348512",
            "beneficiaryCountry": "qui",
            "beneficiaryState": "Wyoming",
            "beneficiaryCity": "Fort Margaretta",
            "beneficiaryPostalCode": "84451",
            "beneficiaryAddress": "31101 Valentin Valleys",
            "bankCode": "94",
            "bankSwiftCode": "RUBHAWH5JLJ",
            "bankName": "Sheldon Waters",
            "bankCountry": "in cupidatat",
            "bankState": "California",
            "bankCity": "North Nellieview",
            "bankPostalCode": "16041-9772",
            "bankAddress": "953 Boyer Overpass",
            "createTime": "2026-06-20 03:39:41"
        },
        {
            "accountId": "12",
            "externalAccountId": "38",
            "bindStatus": "veniam in",
            "accountHolderName": "Darren Hackett",
            "cpfOrCnpj": "proident esse",
            "pixKey": "in esse deserunt adipisicing",
            "accountNumber": "69804174",
            "iban": "AL0680801061E80043480R934E71",
            "beneficiaryCountry": "adipisicing Lorem enim Duis",
            "beneficiaryState": "South Dakota",
            "beneficiaryCity": "New Jaredburgh",
            "beneficiaryPostalCode": "51083",
            "beneficiaryAddress": "99333 Augustine Shore",
            "bankCode": "57",
            "bankSwiftCode": "RTSISHWY",
            "bankName": "Gerald Leuschke",
            "bankCountry": "Excepteur Lorem ipsum",
            "bankState": "New Hampshire",
            "bankCity": "North Alyciamouth",
            "bankPostalCode": "71873",
            "bankAddress": "1214 King Branch",
            "createTime": "2026-07-23 00:57:00"
        }
    ],
    "traceId": "45"
}
Previous
Add Bank Account
Next
List RFI Sub Virtual Account
Built with