Skip to main content
GET
/
api
/
v1
/
hub
/
shop
/
{shopId}
/
product
/
{productId}
Get Single Product
curl --request GET \
  --url https://api.sabivendor.com/api/v1/hub/shop/{shopId}/product/{productId} \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": {
    "id": 101,
    "productName": "Premium Running Shoes",
    "productDescription": "High performance running shoes",
    "productPrice": 1500000,
    "stockQuantity": 100,
    "isActive": true,
    "media": []
  }
}
Retrieves comprehensive details of a specific product in your inventory by ID. Checks that the product belongs to the requested shop.

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.
productId
number
required
The unique ID of the product.
{
  "status": "success",
  "data": {
    "id": 101,
    "productName": "Premium Running Shoes",
    "productDescription": "High performance running shoes",
    "productPrice": 1500000,
    "stockQuantity": 100,
    "isActive": true,
    "media": []
  }
}