Skip to main content
GET
/
api
/
v1
/
settings
/
shipping
List Shipping Zones
curl --request GET \
  --url https://api.launchmystore.io/api/v1/settings/shipping \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": { "shippingZones": [], "count": 0 },
  "pagination": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Returns every shipping zone configured for the merchant — countries, provinces, weight/price brackets, and the rates within each zone. Read-only; zone management lives behind the write_shipping scope on /api/v1/shipping_zones. Required scope: read_settings

Response

data
object
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": { "shippingZones": [], "count": 0 },
  "pagination": null
}