Skip to main content
GET
/
api
/
v1
/
storefront
/
shop
/
{shopId}
/
orders
/
{orderId}
Get Order Status
curl --request GET \
  --url https://api.sabivendor.com/api/v1/storefront/shop/{shopId}/orders/{orderId} \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": {
    "id": 501,
    "reference": "ORD-501-ABCDE",
    "customerName": "Jane Doe",
    "orderStatus": "pending",
    "paymentStatus": "pending",
    "totalPriceKobo": 1250000,
    "shippingFeeKobo": 150000,
    "createdAt": "2026-06-19T14:30:00.000Z",
    "items": [
      {
        "productName": "Air Max Sneaker",
        "quantity": 1,
        "variantName": "Red / 42"
      }
    ]
  }
}
Fetches real-time status and delivery fulfillment information for a specific order. Use this endpoint to render customer-facing tracking views, success dashboards, and invoice receipts.

Authorizations

X-Shop-API-Key
string
required
Your Publishable Key (pk_live_... or pk_test_...) generated from the Developer settings in your dashboard.

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",
    "orderStatus": "pending",
    "paymentStatus": "pending",
    "totalPriceKobo": 1250000,
    "shippingFeeKobo": 150000,
    "createdAt": "2026-06-19T14:30:00.000Z",
    "items": [
      {
        "productName": "Air Max Sneaker",
        "quantity": 1,
        "variantName": "Red / 42"
      }
    ]
  }
}