Feature Request: Dutch Address Lookup Integration

Problem: Currently we need to use InvokeLLM with internet context as a workaround to lookup Dutch addresses via the openpostcode.nl API. This is slow, expensive (uses AI credits), and inefficient for a simple data lookup.

Proposed Solution: Add a dedicated integration called "DutchAddressLookup" with the following endpoint:

import { DutchAddressLookup } from "@/integrations/Core"; const result = await DutchAddressLookup({ postcode: "1000AB", huisnummer: "123", toevoeging: "A" // optional }); // Returns: { street: "Straatnaam", city: "Plaatsnaam", success: true } 

Benefits:

  • Much faster response times

  • No AI credits consumed

  • More reliable than AI proxy

  • Cleaner code

  • Better user experience

API Details:

  • Endpoint: https://api.openpostcode.nl/postcode/{postcode}/{huisnummer}/{toevoeging?}

  • Free API, no authentication required

  • Returns JSON with street name and city

  • Very commonly used in Dutch applications


This would be a huge improvement for any Dutch business applications built on base44. The openpostcode.nl API is the standard for Dutch address validation, so it would be valuable for many users!

Please authenticate to join the conversation.

Upvoters
Status

In Review

Board
πŸ’‘

Feature Request

Date

5 months ago

Author

Night Stalker

Subscribe to post

Get notified by email when there are changes.