Search Documentation
Search for a documentation page...
Shipping API
REST API endpoints for managing shipping methods shown at checkout.
Shipping methods are the delivery options customers choose at checkout. Each method has a delivery type, a price, optional free-shipping threshold and delivery-time estimates, country restrictions, an associated tax rate, and per-currency price overrides for multi-currency stores.
List Shipping Methods
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 10 | Methods per page (1-100) |
offset | number | 0 | Methods to skip |
query | string | — | Search by method name or description |
Response
Create Shipping Method
Creates a checkout delivery option. Prices are in the store's primary currency; use currencyPrices to override per currency on multi-currency stores.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Display name shown at checkout, e.g. Standard courier |
description | string | No | Optional description shown at checkout |
type | "courier" | "parcel" | "pickup_point" | "in_store" | Yes | Delivery type |
price | number | Yes | Shipping price in the store's primary currency |
freeShippingThreshold | number | No | Order subtotal above which this method is free (store currency) |
minShippingTime | number | No | Minimum delivery time in days |
maxShippingTime | number | No | Maximum delivery time in days |
countries | string[] | No | ISO country codes this method ships to (empty = all) |
taxRateId | string | No | Tax rate UUID to apply to this shipping method |
position | number | No | Sort order at checkout (lower shows first) |
currencyPrices | object | No | Per-currency overrides ({ "EUR": { "price": 9, "freeShippingThreshold": 90 } }) |
Response (201)
Get Shipping Method
Returns a single shipping method by UUID, including its tax rate and per-currency prices.
Response
Update Shipping Method
Replaces the shipping method's fields. Uses the same body as Create Shipping Method.
Request Body
Same fields as Create Shipping Method.
Response (200)
Delete Shipping Method
Hard-deletes the shipping method by UUID.