> ## 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.

# List Shipping Zones

> List the merchant store shipping zones (read-only).

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`](/api-reference/shipping-zones/list).

**Required scope:** `read_settings`

## Response

<ResponseField name="data" type="object">
  <Expandable title="shipping zones">
    <ResponseField name="shippingZones" type="array">
      Zone rows — `id`, `name`, `countries`, `provinces`, `rates`, `weightUnit`,
      `createdAt`, `updatedAt`.
    </ResponseField>

    <ResponseField name="count" type="number">Total zones returned.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status": 200,
    "state": "success",
    "message": null,
    "data": { "shippingZones": [], "count": 0 },
    "pagination": null
  }
  ```
</ResponseExample>
