Customer support agents and sales teams constantly field the question "do you deliver here?" Without a reliable lookup tool, they check spreadsheets, ask colleagues, or guess. Wrong answers create disappointed customers, failed deliveries, and unnecessary escalations.
Build a simple internal form that calls /v1/check and displays the result. Your team enters a postcode, sees immediately whether you deliver there, what zone it falls in, and what price applies — all in one place, always up to date.
# 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.