# Dutch Address Lookup by Postcode or Coordinates

> Dutch Address Lookup by Postcode or Coordinates is a paid API for AI agents from api.agenticweb.nl, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Looks up a Dutch address by postcode + house number, or performs reverse geocoding from coordinates to a Dutch address.

## Facts

- Endpoint: POST https://api.agenticweb.nl/api/v1/nl/address
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dutch-address-lookup-by-postcode-or-coordinates-3e8e36fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d7FDIv1HzjnF6RVO4wwxt

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability dutch-address-lookup-by-postcode-or-coordinates-3e8e36fe -d '<json body>'
```

Example prompt: What is the full address for Dutch postcode 1017CT, house number 1? Or, if you have coordinates, reverse-geocode latitude 52.3676 and longitude 4.9041 to a Dutch street address.

## When to prefer this

Use this endpoint when you need to resolve or validate Dutch addresses by postcode and house number, or when you have GPS coordinates and need the corresponding Dutch street address. It is specifically designed for the Netherlands (NL) address space and is more reliable than a generic global geocoder for Dutch postal data.

## Known failure modes

- Postcode not found or invalid format — likely a 4xx error
- House number does not exist at that postcode — empty or error result
- Coordinates outside the Netherlands — no result or error
- Missing required query parameters — 400 Bad Request
- Payment not processed or insufficient — 402 Payment Required

## How this service works

Dutch address lookup by postcode + house number, or reverse by coordinates. Send the parameters in a JSON request body via POST. Payment constitutes acceptance of the terms at https://agenticweb.nl/terms.

## Output

Returns structured Dutch address data including street name, house number, postcode, city, and municipality — either resolved from a postcode+house number pair or from geographic coordinates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "description": "WGS84 latitude (reverse lookup; with lon)."
  },
  "lon": {
   "type": "number",
   "description": "WGS84 longitude (reverse lookup; with lat)."
  },
  "postcode": {
   "type": "string",
   "description": "Dutch postcode, e.g. 1011AC (forward lookup; with huisnummer)."
  },
  "huisnummer": {
   "type": "number",
   "description": "House number (forward lookup; with postcode)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "object",
  "properties": {
   "lat": {
    "type": "number",
    "description": "WGS84 latitude."
   },
   "lon": {
    "type": "number",
    "description": "WGS84 longitude."
   },
   "city": {
    "type": "string"
   },
   "rd_x": {
    "type": "number",
    "description": "Rijksdriehoek X."
   },
   "rd_y": {
    "type": "number",
    "description": "Rijksdriehoek Y."
   },
   "street": {
    "type": "string"
   },
   "postcode": {
    "type": "string"
   },
   "province": {
    "type": "string"
   },
   "distance_m": {
    "type": "number",
    "description": "Reverse only: metres from the query point."
   },
   "house_number": {
    "type": "number"
   },
   "municipality": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dutch-address-lookup-by-postcode-or-coordinates-3e8e36fe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agenticweb.nl](https://www.zero.xyz/host/api.agenticweb.nl/llms.txt)
