cURL
curl --request GET \ --url https://aboki-b2b-eobk.onrender.com/api/v1/business-offramp/orders/{orderId} \ --header 'Authorization: <authorization>'
{ "success": true, "data": { "orderId": "<string>", "status": "<string>", "tokenAmount": 123, "targetToken": "<string>", "targetNetwork": "<string>", "netNgnAmount": 123, "depositInstructions": { "walletAddress": "<string>", "expiresAt": "<string>" }, "bankDetails": { "accountNumber": "<string>", "accountName": "<string>", "bankName": "<string>" }, "createdAt": "<string>" } }
Get details of a specific offramp order by ID
{ "success": true, "data": { "orderId": "OFF_1703234567_ABC123DEF", "status": "completed", "tokenAmount": 100, "targetToken": "USDC", "targetNetwork": "base", "netNgnAmount": 162525, "depositInstructions": { "walletAddress": "0x742d35Cc6669C87532DD123F5b8c6B3e8e7c5B2A", "expiresAt": "2025-08-20T22:32:55.036Z" }, "bankDetails": { "accountNumber": "1234567890", "accountName": "JOHN DOE", "bankName": "Guaranty Trust Bank" }, "createdAt": "2025-08-19T22:32:55.036Z" } }