Beta Delivery Zone is in private beta and not yet open to customers — public launch coming soon.
Use case

Show the right delivery fee at checkout, not €0

Get free API key Try postcode checker

The problem

Many shops display a €0 or placeholder shipping fee until the customer reaches a later checkout step. This creates sticker shock at payment, increases abandonment, and generates support messages from customers who didn't expect the final cost.

How Delivery Zone solves it

Call /v1/check at postcode entry and use priceCents from the response to display the delivery fee immediately. When the postcode is out of zone, show why rather than hiding the cost. The customer sees the real price from the start.

Example API request

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

Example customer-facing message

We don’t deliver to this postcode. Please check the postcode or choose a different delivery address. Your order has not been charged.

Who this is for

E-commerce stores with zone-based pricing
Restaurant delivery platforms
Grocery and last-mile delivery
Multi-zone logistics operations

Ready to add postcode validation?

Free plan. No credit card. Real setup help.