ESC
Start typing to search documentation...
JoonWeb Dev

Shipping Zones Endpoints

Detailed technical documentation and implementation guide for Shipping Zones Endpoints.

Overview #

List shipping zones #

GET /api/admin/26.0/shipping_zones

Parameters

Field Type Description
limit integer [Optional] Number of results to return (default 20, max 10000)
page integer [Optional] Page number to fetch (default 1)
sort_by string [Optional] Field to sort by (e.g. created_at, title)
sort_order string [Optional] Sort direction: asc or desc

Headers

Header Value
X-Joonweb-Access-Token jw_at_xxxxxxxxxxxx
Content-Type application/json
Request Example
Response
200 OK
{
    "shipping_zones": [
        {
            "id": 1,
            "name": "Domestic Shipping",
            "countries": [
                {
                    "id": 231,
                    "name": "United States",
                    "code": "US",
                    "tax": 0
                }
            ],
            "rates": [
                {
                    "id": 10,
                    "name": "Standard",
                    "price": 10,
                    "type": "flat",
                    "min_order_value": 0,
                    "max_order_value": 50
                },
                {
                    "id": 11,
                    "name": "Free Shipping",
                    "price": 0,
                    "type": "flat",
                    "min_order_value": 50,
                    "max_order_value": null
                }
            ]
        }
    ]
}

What's Next? #

Last modified: Aug 25, 2026