$0.01
per call · USD Coin on Base
Dutch building (BAG) lookup by postcode + house number: construction year, floor area, use function, status. Send the parameters in a JSON request body via POST. Payment constitutes acceptance of the terms at https://agenticweb.nl/terms.
Endpoint
POST https://api.agenticweb.nl/api/v1/nl/building3
Calls / 30d
1
Unique payers / 30d
Aug 21
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.agenticweb.nl/api/v1/nl/building", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"huisnummer": 128,
"postcode": "1011AC"
}),
});
const data = await res.json();curl -X POST \
"https://api.agenticweb.nl/api/v1/nl/building" \
-H "Content-Type: application/json" \
-d '{"huisnummer":128,"postcode":"1011AC"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"properties": {
"aantal_verblijfsobjecten": {
"type": "number"
},
"address": {
"type": "string"
},
"bouwjaar": {
"description": "Construction year (null if unknown).",
"type": "number"
},
"gebruiksdoel": {
"description": "Use function(s), e.g. [\"woonfunctie\"].",
"type": "array"
},
"house_number": {
"type": "number"
},
"nummeraanduiding_id": {
"type": "string"
},
"oppervlakte_m2": {
"description": "Floor area in m².",
"type": "number"
},
"pand_id": {
"description": "BAG pand (building) id.",
"type": "string"
},
"pand_status": {
"type": "string"
},
"postcode": {
"type": "string"
},
"verblijfsobject_id": {
"description": "BAG verblijfsobject id.",
"type": "string"
},
"verblijfsobject_status": {
"type": "string"
}
},
"type": "object"
}Payment details
0x9fd85fe177a8750a0e8a15b0741c56932f26f1aeUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Other and the homepage with a featured placement.
More from Agenticweb & similar services
Agenticweb · NL School Holidays
api.agenticweb.nl
Current Dutch school-holiday dates by year, region or date. Payment constitutes acceptance of the terms at https://agenticweb.nl/terms.
Agenticweb · Global FX
api.agenticweb.nl
Currency conversion via ECB euro reference rates (informational). The underlying ECB reference rates can be obtained free of charge from https://www.ecb.europa.eu/stats/eurofxref/. Payment constitutes acceptance of the terms at https://agenticweb.nl/terms.
Agenticweb · NL Address
api.agenticweb.nl
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.