Skip to main content
GET
/
api
/
v1
/
hub
/
shop
/
{shopId}
/
shipping
/
regions
List Shipping Regions
curl --request GET \
  --url https://api.sabivendor.com/api/v1/hub/shop/{shopId}/shipping/regions \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": [
    {
      "id": 12,
      "regionName": "Lagos Mainland Delivery",
      "shippingFeeKobo": 150000,
      "isPopular": true,
      "isOtherCities": false,
      "isActive": true
    }
  ]
}
Retrieves configured delivery shipping regions and active regional rates for the 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.
{
  "status": "success",
  "data": [
    {
      "id": 12,
      "regionName": "Lagos Mainland Delivery",
      "shippingFeeKobo": 150000,
      "isPopular": true,
      "isOtherCities": false,
      "isActive": true
    }
  ]
}