Skip to main content
GET
/
api
/
v1
/
business-onramp
/
orders
/
{orderId}
Get Onramp Order
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 Onramp Order

Retrieve complete details of a specific onramp order including current status, transaction information, and network-specific data.
Authorization
string
required
Your Public Key from the dashboard. Format: Bearer pk_live_your_key_here

Path Parameters

orderId
string
required
Onramp order ID or business order reference (e.g., OR_1234567890_ABCDEF)

Response

success
boolean
Whether the request was successful
data
object
orderId
string
Unique order identifier
targetNetwork
string
Blockchain network (base, solana, ethereum)
status
string
Current order status
amount
number
NGN amount being converted
targetToken
string
Token customer will receive
customerWallet
string
Customer’s wallet address
validation
object
tokenValidated
boolean
Whether token is supported
contractSupported
boolean
Smart contract validation status
jupiterSupported
boolean
Jupiter DEX support status
pricingInfo
object
source
string
Pricing data source
currentUsdcRate
number
Current USDC to NGN rate
smartContractData
object
Base network specific information
jupiterData
object
Solana network specific information
createdAt
string
Order creation timestamp

Example Response

{
  "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"
  }
}
I