BPN OpenAPI
  1. Wallet
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
      • Create Virtaul Account
      • Get Virtual Account Detail
      • List Virtual Account
      • Send Email Verify Code
      • Query bank info by account number
      • Payout via Virtual Account
      • Refund Virtual Account Order
      • Get Virtual Account Order Detail
      • List Virtual Account Orders
      • Submit Invoice
      • Get Invoice list Status
      • List Banks
      • Add Bank Account
      • List Bank Account
      • List RFI Sub Virtual Account
      • Get Sub Virtual Account RFI Template Info
      • Sub Virtual Account Submit RFI
    • Wallet
      • List Wallets
        GET
      • List Sub Account
        GET
      • Create Sub Account
        POST
      • Wallet Internal Transfer
        POST
      • Get Asset Balance
        GET
      • Get Deposit Address
        GET
      • Add Deposit Sender
        POST
      • Add Withdraw Whitelist
        POST
      • Delete Withdraw Whiltelist
        POST
      • Request Withdraw
        POST
      • Query Transaction History
        GET
    • 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. Wallet

Query Transaction History

GET
/v1/wallet/history

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/wallet/history?transactionId=txn_20250808120000123&hash=0x0a9f3c2d5b7e98c4e0f1a9b7c3d2e1f0a9f3c2d5b7e98c4e0f1a9b7c3d2e1f0&transactionCreateTimeFrom=1640995200000&transactionCreateTimeTo=1640995202000&transactionType&lackDepositSender&pageSize&pageNumber'

Responses

🟢200OK
application/json
Body

Example
{
    "status": 200,
    "code": null,
    "msg": "OK",
    "traceId": "Auto:bf288b9af2e04dff88e943f2dcaf2b03",
    "data": {
        "pageNumber": 1,
        "pageSize": 2,
        "totalPage": 1,
        "totalRow": 2,
        "records": [
            {
                "transactionId": "txn_20250808120000123",
                "userId": "100001121",
                "currency": "USDC",
                "walletId": "wlt_6f3a21d0",
                "amount": 1250.75,
                "fee": 1.25,
                "openBalance": 10000,
                "closeBalance": 8750,
                "transactionType": "withdraw",
                "subType": "ON_CHAIN",
                "status": "success",
                "orderReference": "ord_8a7f5e11",
                "channelOrderId": "chn_5d92c0b7",
                "description": "User withdrawal to external wallet",
                "blockchainHash": "0x0a9f3c2d5b7e98c4e0f1a9b7c3d2e1f0a9f3c2d5b7e98c4e0f1a9b7c3d2e1f0",
                "blockchainHashLink": "https://etherscan.io/tx/0x0a9f3c2d5b7e98c4e0f1a9b7c3d2e1f0a9f3c2d5b7e98c4e0f1a9b7c3d2e1f0",
                "network": "ETH",
                "memo": "",
                "fromAddress": "0x1234abcd5678ef901234abcd5678ef901234abcd",
                "toAddress": "0x9abcdef0123456789abcdef0123456789abcdef0",
                "createTime": "2025-08-08T11:58:00Z",
                "updateTime": "2025-08-08T12:00:00Z",
                "processTime": "2025-08-08T11:59:10Z",
                "completeTime": "2025-08-08T12:00:00Z",
                "cancelTime": ""
            },
            {
                "transactionId": "txn_20250808115900456",
                "userId": "100001121",
                "currency": "BTC",
                "walletId": "wlt_2a9b33c1",
                "amount": 0.015,
                "fee": 0.0001,
                "openBalance": 0.25,
                "closeBalance": 0.235,
                "transactionType": "deposit",
                "status": "pending",
                "orderReference": "ord_1f2e3d4c",
                "channelOrderId": "chn_7b61a2e4",
                "description": "Inbound transfer awaiting confirmations",
                "blockchainHash": "0xb1f3d9c0a7e6543210b1f3d9c0a7e6543210b1f3d9c0a7e6543210b1f3d9c0a7",
                "blockchainHashLink": "https://www.blockchain.com/explorer/transactions/btc/0xb1f3d9c0a7e6543210b1f3d9c0a7e6543210b1f3d9c0a7e6543210b1f3d9c0a7",
                "network": "BTC",
                "memo": "",
                "fromAddress": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
                "toAddress": "bc1q9m2n3p4q5r6s7t8u9v0w1x2y3z4a5b6c7d8e9f",
                "createTime": "2025-08-08T11:59:00Z",
                "updateTime": "2025-08-08T11:59:00Z",
                "processTime": "",
                "completeTime": "",
                "cancelTime": ""
            }
        ]
    }
}
Previous
Request Withdraw
Next
Inquery FX Rate
Built with