BPN
  1. BPN Transactions
BPN
  • Getting Started
    • Introduction to BPN
    • Key Concepts & Terminology
    • Architecture Overview
  • Onboarding & Prerequisites
    • Product Demo
    • Sandbox & Test Environment
  • Use Case
    • Transfer
    • Vault
    • On/Off Ramp
    • Compliance (Travel Rule Information Submission)
  • API Reference
    • KYB
      • Share KYB Info For Sub User
      • Get KYB Sub User Status
    • Account Management
      • add bank account
      • list bank account
      • create virtaul account
      • list virtual account
      • Master VA balance inquiry
      • list virtual account orders
      • refund virtual account order
    • Wallet
      • Get Asset Balance
      • Get Deposit Address
      • Add Deposit Sender
      • Add Withdraw Whitelist
      • Delete Withdraw Whiltelist
      • Request Withdraw
      • Query Transaction History
    • FX
      • fx inquery
    • BPN Transactions
      • get stablecoin quote
        GET
      • create stable order
        POST
      • get order (single) detail
        GET
      • list orders(batch)
        GET
    • Reconciliation
  • Webhooks & Event
    • resend fail webhook
      POST
    • KYB Status Notification
      POST
    • Transaction Status Notification
      POST
    • Account Status Notification
      POST
    • Open Virtual Account Status
      POST
    • Deposit Sender Detail Required
      POST
    • virtual account payment status
      POST
  • Appendix
    • Enum
    • Virtual Account(VA) Support List
  • Release Notes & Changelog
    • Version History
  • Schemas
    • Schemas
      • walletBalance
      • walletAddress
      • transactionRecord
  1. BPN Transactions

list orders(batch)

GET
/v1/stable/order/list
Description
Batch query orders within a time window and/or by order status. Supports pagination for efficient back-office retrieval and reconciliation.

Request

Query Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/stable/order/list?merchantOrderId=&orderId=&businessType=&orderStatus=&startTime=&endTime=&pageNum=0&pageSize=0'
Response Response Example
{
    "status": 0,
    "message": "string",
    "data": {
        "pageNumber": 0,
        "pageSize": 0,
        "totalPage": 0,
        "totalRow": 0,
        "records": [
            {
                "merchantOrderId": "string",
                "orderId": "string",
                "orderStatus": "string",
                "businessType": "string",
                "paymentMethod": "string",
                "sourceCurrency": "string",
                "targetCurrency": "string",
                "sourceAmount": 0,
                "targetAmount": 0,
                "ourFee": 0,
                "ourFeeCurrency": "string",
                "payInFee": 0,
                "payInFeeCurrency": "string",
                "payOutFee": 0,
                "payOutFeeCurrency": "string",
                "createdTime": "string",
                "completedTime": "string",
                "sourceAccountId": "string",
                "targetAccountId": "string"
            }
        ]
    },
    "traceId": "string"
}
Modified at 2025-09-10 14:45:44
Previous
get order (single) detail
Next
resend fail webhook
Built with