Validate Postal Code
Check whether Instabee offers home delivery to a given postal code. This is the first step in the standard Home Delivery integration — validate the postal code before showing the delivery option in checkout. A 200 response means we deliver to that area; a 404 means it is not serviceable.
Endpoint
1GET /availability/countries/{countryCode}/postal-codes/{postalCode}/delivery-options?brand={brand}&product=HOME_DELIVERY1GET /availability/countries/{countryCode}/postal-codes/{postalCode}/delivery-options?brand={brand}&product=HOME_DELIVERY
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
countryCode | string | required | Country code (BE, DK, FI, NL, NO, SE) |
postalCode | string | required | Postal code to validate |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
brand | string | required | Your brand identifier (e.g. budbee, porterbuddy) |
product | string | required | Must be HOME_DELIVERY |
Response
A 200 response indicates that home delivery is available for the requested postal code. A 404 response means the postal code is not serviceable.
| Status Code | Description |
|---|---|
200 | Home delivery is available for this postal code |
404 | Postal code is not serviceable |