curl --location 'https://dashboard.aurpay.net/api/order/pay-info' \
--header 'Content-Type: application/json' \
--data '{
"chain": "ETH", // Supported blockchain
"currency": "USDT-ERC20", // Supported Cryptocurrency currency
"vs_currency": "USD", // Order amount in real currency - required
"vs_price": 18, // Real currency type - required
"succeed_url": "https://example.com/succeed_url", // Redirect URL to checkout page after successful payment
"timeout_url": "https://example.com/timeout_url", // Redirect URL to checkout page after payment timeout
"callback_url": "https://example.com/callback_url", // Callback URL(GET) after successful payment
"timeout_callback": "https://example.com/timeout_callback" // Callback URL(GET) after payment timeout
}'{
"code": 0,
"message": "ok",
"data": {
"order_id": "20240613093614690315",
"status": "PENDING",
"amount": 18.0098,
"create_time": "2024-06-13T09:36:14",
"vs_currency": "USD",
"vs_price": 18,
"address": "0x686691e7b70e9239e19eB4cd080DDb8aB6F33cf3",
"contract_addr": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"pay_url": "https://dashboard.aurpay.net/#/cashier/20240613093614690315"
},
"result": true
}