W Checkout En
  1. order
W Checkout En
  • Introduction
  • Integration Preparation
  • Quick Start
    • Integrating Order Payment
    • Refunds
    • Settlement
    • Webhook
    • Enumeration Reference Table
  • API Reference
    • auth
      • get AccessToken
    • order
      • CreateCheckoutOrder
        POST
      • CancelCheckoutOrder
        GET
      • GetCheckoutOrderInfo
        GET
      • GetCheckoutOrderList
        POST
    • refund-order
      • CreateRefundOrder
      • CancelRefundOrder
      • GetRefundOrderInfo
      • GetRefundOrderList
    • settlement
      • CreateSettlementOrder
      • CreateFiatSettlementOrder
      • CancelSettlementOrder
      • GetSettlementOrder
      • GetSettlementOrderList
    • abnormal-payment
      • GetAbnormalPaymentList
      • CreateAbnormalPaymentRefund
    • Webhook
      • WcheckoutWebhook
  1. order

GetCheckoutOrderInfo

Developing
GET
/checkout/order/info
Retrieve real-time information of a checkout payment order

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 '/checkout/order/info?orderNo=1762251243302'

Responses

🟢200Success
application/json
Body

Example
{
    "retcode": "200",
    "retdata": {
        "sysid": "OR1971467057612247041",
        "orderNo": "o456463453458",
        "orderAmount": 123.45,
        "payingAmount": 124.68,
        "customerId": "c1234445544",
        "merchantId": "m0099e34345",
        "expiredIn": 2345,
        "token": "ETH_USDT",
        "txHash": "0x371607f7463d27ae9deaf64ae00da9cbd4cf0065",
        "depositAddress": "0x1246e708e97755579e040d5f2b003fef1398cde6",
        "orderStatus": "PAYING",
        "createdTime": "2025-09-26T14:49:09.294114",
        "updatedTime": "2025-09-26T14:49:09.294114"
    }
}
Modified at 2026-01-20 03:13:28
Previous
CancelCheckoutOrder
Next
GetCheckoutOrderList
Built with