Skip to main content
GET
/
api
/
v1
/
hub
/
shop
/
{shopId}
/
product
List Products
curl --request GET \
  --url https://api.sabivendor.com/api/v1/hub/shop/{shopId}/product \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": [
    {
      "id": 101,
      "productName": "Premium Running Shoes",
      "productPrice": 1500000,
      "stockQuantity": 100,
      "isActive": true
    }
  ]
}
Retrieves a list of all products in your shop catalog. Use this endpoint for backend inventory tables, synchronization dashboards, and inventory status tracking.

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.
{
  "status": "success",
  "data": [
    {
      "id": 101,
      "productName": "Premium Running Shoes",
      "productPrice": 1500000,
      "stockQuantity": 100,
      "isActive": true
    }
  ]
}