cURL
curl --request GET \ --url https://aboki-b2b-eobk.onrender.com/api/v1/business-onramp/orders/{orderId} \ --header 'Authorization: <authorization>'
{ "success": true, "data": { "orderId": "<string>", "targetNetwork": "<string>", "status": "<string>", "amount": 123, "targetToken": "<string>", "customerWallet": "<string>", "validation": { "tokenValidated": true, "contractSupported": true, "jupiterSupported": true }, "pricingInfo": { "source": "<string>", "currentUsdcRate": 123 }, "smartContractData": {}, "jupiterData": {}, "createdAt": "<string>" } }
Get details of a specific onramp order by ID
{ "success": true, "data": { "orderId": "OR_1234567890_ABCDEF", "targetNetwork": "base", "status": "completed", "amount": 50000, "targetToken": "ENB", "customerWallet": "0x742d35Cc6634C0532925a3b8D1D8ce28D2e67F5c", "validation": { "tokenValidated": true, "contractSupported": true, "jupiterSupported": true }, "pricingInfo": { "source": "smart_contract_dex_with_current_rates", "currentUsdcRate": 1720 }, "smartContractData": { "liquidityAdequate": true, "bestRoute": "V3 Direct (0.3% fee)" }, "createdAt": "2025-08-21T02:18:40.747Z" } }