1. Wallet
BPN OpenAPI
  • Get started
    • Introduction to BPN
    • Introduction to API
    • Architecture Overview
    • Authentication
    • Environments
    • Response envelope
    • Idempotency
  • Guides
    • Virtual Account
      • Virtual Account Overview
      • VA · Payin
      • VA · Statuses
      • VA · Currencies & limits
      • VA · Payout
      • VA · RFI
    • Wallet
      • Wallet · Transfer
      • Wallet · Assets & limits
      • Wallet · Deposit whitelist
      • Wallet · PaymentLink
      • Wallet Overview
      • Wallet · Deposit
      • Wallet · Statuses
      • Wallet · Withdraw
    • Convert
      • Convert Overview
      • Convert · Quote & submit
      • Convert · Business types
      • Convert · Pairs & limits
      • Convert · Statuses
  • API Reference
    • Virtual Account
      • Virtual Account field notes
      • Inquiry Master VA Balance
      • List Primary Virtual Accounts
      • Create Virtual Account
      • Get Virtual Account Detail
      • List Virtual Account
      • List Virtual Account Orders
      • Get Virtual Account Order Detail
      • Refund Virtual Account Order
      • List RFI Sub Virtual Account
      • Get Sub Virtual Account RFI Template Info
      • Sub Virtual Account Submit RFI
      • Add Bank Account
      • List Bank Account
      • List Banks
      • Payout via Virtual Account
      • Send Email Verify Code
    • Wallet
      • Wallet field notes
      • Deposit Whitelist
        • Get Deposit Whitelist Options
        • Register Deposit Source Address
        • List Deposit Source Addresses
        • Get Deposit Source Address
        • Disable Deposit Source Address
        • Submit Payer Details for a Received Deposit
        • Save Sub-wallet Payer Profile
        • Update Sub-wallet Payer Profile
        • Get Sub-wallet Payer Profile
      • Get Asset Balance
        GET
      • Get Deposit Address
        GET
      • Add Deposit Sender
        POST
      • Add Withdraw Whitelist
        POST
      • Delete Withdraw Whiltelist
        POST
      • Request Withdraw
        POST
      • Query Wallet Internal Transfer Detail
        GET
      • List Wallet Internal Transfer order
        GET
      • Wallet Internal Transfer
        POST
      • Create Sub Account
        POST
      • Query Transaction History
        GET
      • List Wallets
        GET
      • List Sub Account
        GET
      • Get Transaction Detail
        GET
      • List Wallet Transactions
        GET
      • Get Wallet Transaction Detail
        GET
    • Payment Link
      • Abnormal fund
        • Abnormal funds
        • Matchable Payment links
        • Link Order(Abnormal fund)
        • Submit to platform
      • Create Payment Link
      • List Payment links
      • Get Curreny Network Config
    • Convert
      • Convert field notes
      • Inquery FX Rate
      • Get Stablecoin Quote
      • Create Stable Order
      • Get Order (Single) Detail
      • List Orders(Batch)
    • KYB
      • Share KYB/KYC Info For Sub User
      • Get KYB Sub User Status
    • Reconciliation
      • Get Reconciliation Order List By Page
    • External Provider
      • FE: Create stablecoin collection sub-account link
      • FE: Deposit Travel Rule
      • External Provider · Deposit whitelist
      • Create stablecoin collection sub-account link
      • Get sub wallet account
      • List sub wallet accounts
      • Change sub wallet status
      • Query stablecoin collection order list
      • Query stablecoin collection order status
      • Get quote
      • Accept stablecoin collection order
      • Reject stablecoin collection order
      • Query USD balance
      • USD Payout (withdrawal)
      • Query USD Payout order status
      • Query USD Payout order list
    • Mock
      • Mock Virtual account Payin Order
      • Mock wallet deposit transaction
      • Mock Payin Order Refund
      • Mock Payout Order Update Status
    • Pay Session
      • Request Pay Session
  • Webhooks
    • Webhooks Overview
    • KYB notifications
    • Event catalogue
    • 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
    • Abnormal Fund Notification
    • WALLET_TRANSFER_ORDER_UPDATED
    • Sub Virtual Account RFI Required
    • Sub Wallet Update
    • wallet address whitelist Update
    • Crypto Deposit Order Notification
    • Collect Order Updated
    • Usd Payout Order Updated
    • onboard result
    • partner order status
    • PaymentLink Notification
    • Deposit Whitelist Notification
  • Partner Flow
    • inquiry supported currency
    • KYC/KYB Sharing
    • inquiry onboard status
    • get price
    • Create order
    • order list
    • inquiry single order
    • get user deposit address
    • get payment instruction
    • sync fund notification
    • daily settlement records
  • Appendix
    • Enums quick reference
    • Enum
    • Virtual Account(VA) Support List & KYB requirement
  • Release Notes & Changelog
  • Errors
    • Error codes catalogue
  • Change Log
    • 2026-09-21 Virtual Account independent refund orders
    • Wallet deposit source-address whitelist
  1. Wallet

Get Wallet Transaction Detail

Designing
GET
/v1/wallet/transaction/detail
Returns one wallet transaction in the authenticated merchant user's scope. Supply requestId or transactionId; when both are supplied, they are combined with AND.

Deposit whitelist#

Deposit records also carry whiteListStatus and creditStatus.
Three independent states travel together — do not collapse them:
FieldAnswers
statusIs the whole deposit finished?
whiteListStatusWhere is the Travel Rule review?
creditStatusIs the money spendable?
Read creditStatus, not status, to decide whether the funds can be used.
statuswhiteListStatuscreditStatusMeaning
PROCESSINGinitPENDINGWaiting for you to submit payer details
PROCESSINGpendingPENDINGUnder review. Funds in the unavailable balance
PROCESSINGrejectedPENDINGRejected — resubmit. Funds still unavailable
PROCESSINGapprovedCREDITEDNormal. Funds already available; the deposit itself is not finished (auto-collection still running, for example)
SUCCESSapprovedCREDITEDDeposit fully complete, including auto-collection where enabled
anyanyBLOCKEDCould not be credited — contact support
whiteListStatus replaces the withdrawn submitStatus, and its values are lowercase
(init / pending / approved / rejected). Non-deposit transactions may return null for both
fields, or omit them.
Submit payer details with POST /v1/wallet/deposit-whitelist/transactions/{transactionId}/submit.
Guide: Wallet · Deposit whitelist

Error codes#

Business failures return status 500 and an 8-digit code (WalletErrorCode).
codeMeaning
10000046Neither requestId nor transactionId was supplied
10000007No transaction in this merchant user's scope matches the supplied identifiers

Request

Authorization
API Key
Add parameter in header
API-KEY
Example:
API-KEY: ********************
API Key
Add parameter in header
API-SIGNATURE
Example:
API-SIGNATURE: ********************
API Key
Add parameter in header
API-TIMESTAMP
Example:
API-TIMESTAMP: ********************
or
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 '/v1/wallet/transaction/detail?requestId=wd_req_20260907_001&transactionId=txn_20260907001' \
--header 'API-KEY: <api-key>' \
--header 'API-SIGNATURE: <api-key>' \
--header 'API-TIMESTAMP: <api-key>'

Responses

🟢200OK
application/json
Bodyapplication/json

Example
{
    "status": 0,
    "code": "string",
    "msg": "string",
    "traceId": "string",
    "success": true,
    "data": {
        "transactionId": "20573580428712136704",
        "requestId": "b0f4c6a2-7d51-4c0e-9a2f-6f7a1c2d3e45",
        "walletId": 123,
        "transactionType": "DEPOSIT",
        "status": "PROCESSING",
        "whiteListStatus": "init",
        "creditStatus": "PENDING",
        "failMessage": "",
        "currency": "USDC",
        "amount": "100.00",
        "fee": "0.50",
        "network": "BSC",
        "fromAddress": "0x3a1F8C4e2b6C8c9D7fE2B8b5a1d3C9A0bE12F345",
        "toAddress": "0x9dE4a1B7c2F80e5A3b6C1d9E7f0A2b4C6d8E0F13",
        "memo": "",
        "blockchainHash": "0x9c1a...f3",
        "createTime": "2026-09-08T09:12:00Z",
        "completeTime": ""
    }
}
Previous
List Wallet Transactions
Next
Abnormal funds
Built with