Skip to main content
GET
/
api
/
v1
/
storefront
/
shop
/
{shopId}
/
shipping-regions
Get Shipping Regions
curl --request GET \
  --url https://api.sabivendor.com/api/v1/storefront/shop/{shopId}/shipping-regions \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "data": [
    {
      "id": 12,
      "regionName": "Lagos Mainland",
      "shippingFeeKobo": 150000,
      "isPopular": true,
      "isOtherCities": false,
      "customRegionName": "Lagos Mainland Delivery"
    }
  ]
}
Retrieves active shipping regions, shipping rates, popular delivery zones, and flat rates configured by the shop merchant. Use this endpoint to calculate delivery fees dynamically on checkout screens based on user shipping region choices.

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.
{
  "status": "success",
  "data": [
    {
      "id": 12,
      "regionName": "Lagos Mainland",
      "shippingFeeKobo": 150000,
      "isPopular": true,
      "isOtherCities": false,
      "customRegionName": "Lagos Mainland Delivery"
    }
  ]
}