Skip to main content
GET
/
api
/
v1
/
hub
/
shop
/
{shopId}
/
order
/
{orderId}
Get Single Order
curl --request GET \
  --url https://api.sabivendor.com/api/v1/hub/shop/{shopId}/order/{orderId} \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": {
    "id": 501,
    "reference": "ORD-501-ABCDE",
    "customerName": "Jane Doe",
    "customerPhoneNumber": "08012345678",
    "customerEmail": "jane@example.com",
    "customerAddress": "123 Main St, Lagos",
    "totalPriceKobo": 1250000,
    "orderStatus": "pending",
    "paymentStatus": "pending",
    "createdAt": "2026-06-19T14:30:00.000Z",
    "products": [
      {
        "id": 1,
        "productName": "Air Max Sneaker",
        "quantity": 1,
        "variantPriceKobo": 1250000,
        "variantName": "Red / 42"
      }
    ]
  }
}
Retrieves full order details, including ordered products, customer details, and shipping address.

Authorizations

X-Shop-API-Key
string
required
Your Secret API Key (sk_live_... or sk_test_...) generated from the Developer dashboard. Must be kept secret.

Path Parameters

shopId
string
required
The unique UUID of the shop.
orderId
number
required
The unique ID of the order.
{
  "status": "success",
  "data": {
    "id": 501,
    "reference": "ORD-501-ABCDE",
    "customerName": "Jane Doe",
    "customerPhoneNumber": "08012345678",
    "customerEmail": "jane@example.com",
    "customerAddress": "123 Main St, Lagos",
    "totalPriceKobo": 1250000,
    "orderStatus": "pending",
    "paymentStatus": "pending",
    "createdAt": "2026-06-19T14:30:00.000Z",
    "products": [
      {
        "id": 1,
        "productName": "Air Max Sneaker",
        "quantity": 1,
        "variantPriceKobo": 1250000,
        "variantName": "Red / 42"
      }
    ]
  }
}