One endpoint that turns a postcode and house number into a full, verified address — street, city, municipality and the official BAG identifier. Updated nightly.
Read the reference Pricing$ curl "https://api-nl.safeeclipse.ru/v1/lookup?\ postcode=1015CS&number=62" { "street": "Keizersgracht", "number": 62, "suffix": null, "postcode": "1015CS", "city": "Amsterdam", "municipality": "Amsterdam", "province": "Noord-Holland", "bag_id": "0363010000740855", "purpose": "kantoorfunctie" }
The Dutch way round: two fields in, a complete address out. No free-text parsing, no guessing.
Built from the official BAG extract. New builds appear within a day of registration, demolitions disappear the same way.
Letters and additions (62-H, 3 bis)
resolved against the register instead of being stripped.
Up to 5 000 lookups per request, answered in a single round trip. Ideal for cleaning an existing customer table.
Give a BAG identifier, get the address. Useful when you already store the id and need to render it.
No SDK required. A bearer token, a query string and JSON back. Everything is idempotent and cacheable.
| Endpoint | p50 | p95 | p99 |
|---|---|---|---|
/v1/lookup | 11 ms | 38 ms | 74 ms |
/v1/reverse | 9 ms | 31 ms | 66 ms |
/v1/bulk (1 000 rows) | 240 ms | 430 ms | 910 ms |