Skip to main content
GET
/
api
/
v1
/
shipping-zones
List Shipping Zones
curl --request GET \
  --url https://api.launchmystore.io/api/v1/shipping-zones \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "shipping_zones": [
      {
        "id": "zone_domestic",
        "name": "Domestic",
        "countries": ["US"],
        "rates": [
          {
            "id": "rate_001",
            "name": "Standard Shipping",
            "price": 599,
            "min_order_subtotal": 0,
            "max_order_subtotal": null,
            "estimated_days_min": 5,
            "estimated_days_max": 7
          },
          {
            "id": "rate_002",
            "name": "Express Shipping",
            "price": 1499,
            "min_order_subtotal": 0,
            "max_order_subtotal": null,
            "estimated_days_min": 2,
            "estimated_days_max": 3
          },
          {
            "id": "rate_003",
            "name": "Free Shipping",
            "price": 0,
            "min_order_subtotal": 5000,
            "max_order_subtotal": null,
            "estimated_days_min": 5,
            "estimated_days_max": 7
          }
        ],
        "created_at": "2024-01-01T00:00:00Z"
      },
      {
        "id": "zone_international",
        "name": "International",
        "countries": ["CA", "GB", "AU", "DE", "FR"],
        "rates": [
          {
            "id": "rate_004",
            "name": "International Standard",
            "price": 2499,
            "estimated_days_min": 10,
            "estimated_days_max": 15
          }
        ],
        "created_at": "2024-01-01T00:00:00Z"
      }
    ]
  }
}

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.

Response

success
boolean
Request success status
data
object
{
  "success": true,
  "data": {
    "shipping_zones": [
      {
        "id": "zone_domestic",
        "name": "Domestic",
        "countries": ["US"],
        "rates": [
          {
            "id": "rate_001",
            "name": "Standard Shipping",
            "price": 599,
            "min_order_subtotal": 0,
            "max_order_subtotal": null,
            "estimated_days_min": 5,
            "estimated_days_max": 7
          },
          {
            "id": "rate_002",
            "name": "Express Shipping",
            "price": 1499,
            "min_order_subtotal": 0,
            "max_order_subtotal": null,
            "estimated_days_min": 2,
            "estimated_days_max": 3
          },
          {
            "id": "rate_003",
            "name": "Free Shipping",
            "price": 0,
            "min_order_subtotal": 5000,
            "max_order_subtotal": null,
            "estimated_days_min": 5,
            "estimated_days_max": 7
          }
        ],
        "created_at": "2024-01-01T00:00:00Z"
      },
      {
        "id": "zone_international",
        "name": "International",
        "countries": ["CA", "GB", "AU", "DE", "FR"],
        "rates": [
          {
            "id": "rate_004",
            "name": "International Standard",
            "price": 2499,
            "estimated_days_min": 10,
            "estimated_days_max": 15
          }
        ],
        "created_at": "2024-01-01T00:00:00Z"
      }
    ]
  }
}