Shopify's native shipping zones are coarse — they work by country and region, not by Finnish postcode precision. If you deliver only to specific postal areas, Shopify's defaults either over-permit (accepting orders you can't fulfill) or require complex workarounds.
Call the Delivery Zone API from your Shopify backend (custom app, Shopify Functions, or checkout extension) before the order is confirmed. The API returns a clear deliverability decision and zone-based price you can surface in the checkout UI.
# Server-side: check whether a postcode can be delivered to
curl -X POST https://api.deliveryzone.fi/v1/check \
-H "X-Api-Key: dz_live_..." \
-H "Content-Type: application/json" \
-d '{"destinationPostcode":"00100","basketValueCents":4500}'
# response
{
"canDeliver": true,
"zone": "Helsinki Center",
"priceCents": 590,
"reason": null
}We don’t deliver to this postcode. Please check the postcode or choose a different delivery address. Your order has not been charged.
Free plan. No credit card. Real setup help.