| field | Individual Buyer (< 1,000 USD) | Individual Buyer (>= 1,000 USD) |
|---|---|---|
| firstName & lastName | mandatory | mandatory |
| residentialAddress | -- | mandatory |
| field | Corporate Buyer (< 1,000 USD) | Corporate Buyer (>= 1,000 USD) |
|---|---|---|
| companyName | mandatory | mandatory |
| registeredAddress | -- | mandatory |
Authorization: Bearer ********************{
"participantCode": "B0100348",
"orderAmount": {"amount": "10.00", "currency": "USD"},
"orderCurrency": "USD",
"expiry": 1800000000000,
"clientCheckoutId": "order-001",
"buyerInfo": {"firstName": "Alice", "lastName": "Smith"},
"productInfo": {"productName": "Premium Plan"},
"checkoutConfiguration": {"merchantName": "MyStore", "defaultLanguage": "ENGLISH"}
}curl --location '/v2.0/payment/crypto/checkouts' \
--header 'Content-Type: application/json' \
--data '{
"participantCode": "B0100348",
"orderAmount": {"amount": "10.00", "currency": "USD"},
"orderCurrency": "USD",
"expiry": 1800000000000,
"clientCheckoutId": "order-001",
"buyerInfo": {"firstName": "Alice", "lastName": "Smith"},
"productInfo": {"productName": "Premium Plan"},
"checkoutConfiguration": {"merchantName": "MyStore", "defaultLanguage": "ENGLISH"}
}'{
"code": 200,
"msg": "success",
"data": {
"checkoutId": "20260722000000521",
"status": "OPENING",
"checkoutUrl": "https://pay.sandbox.mce.sg/?version=v2&token=...",
"orderAmount": {"amount": "10.00", "currency": "USD"},
"acceptableCryptos": [{"cryptoCurrency": "USDT", "blockchains": ["TRON", "ETHEREUM"]}],
"createdAt": 1784685064000
}
}