# GetApi Property Energy Label Lookup

> GetApi Property Energy Label Lookup is a paid API for AI agents from api.getapi.nl, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the official Dutch energy label (energy class, index, validity) for a residential property identified by zip code and house number

## Facts

- Endpoint: GET https://api.getapi.nl/api/v1/property/energy-label
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/getapi-property-energy-label-lookup-5e5bc9f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mT_-b2AuSJn8-uS59aepK

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 getapi-property-energy-label-lookup-5e5bc9f0
```

Example prompt: What is the official energy label for the apartment at Keizersgracht 1, 1011AB Amsterdam — is it still valid and what's the energy index?

## When to prefer this

Use this endpoint when you need official Dutch energy label data (energy class A–G, energy index, validity) for a specific residential or commercial property identified by Dutch postcode and house number. Prefer this over generic property APIs when the query is specifically about Dutch EP-online energy certificates, building energy performance, or sustainability compliance for Netherlands-based real estate.

## Known failure modes

- Property not found in register: returns found=false with empty labels array
- Invalid or malformed zip code: returns error or empty result
- House number/letter mismatch: no matching label returned
- Expired or unregistered energy label: record may be absent
- Rate limiting or payment failure: HTTP 402 if x402 payment not processed

## How this service works

Ontdek, test en integreer krachtige API&#039;s voor web scraping, e-mailvalidatie, geolocatie
    en meer. Gratis starten.

## Output

Returns a JSON object with a 'found' boolean and a 'labels' array. Each label entry contains: zip code, energy class (e.g. A–G), energy index (numeric), validity date, house number, optional house letter, building type (e.g. Appartement), construction year, and registration date. Returns found=false if no label is registered for the given address.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "zipcode": "1011AB",
      "house_number": 1,
      "house_letter": "value",
      "house_number_addition": "value"
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "found": true,
     "labels": [
      {
       "zipcode": "1011AB",
       "house_number": 1,
       "house_letter": null,
       "energy_class": "A",
       "energy_index": 0.72,
       "building_type": "Appartement",
       "construction_year": 1985,
       "valid_until": "2035-01-01T00:00:00",
       "registration_date": "2025-01-01T00:00:00"
      }
     ]
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "labels": [
   {
    "zipcode": "1011AB",
    "valid_until": "2035-01-01T00:00:00",
    "energy_class": "A",
    "energy_index": 0.72,
    "house_letter": null,
    "house_number": 1,
    "building_type": "Appartement",
    "construction_year": 1985,
    "registration_date": "2025-01-01T00:00:00"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/getapi-property-energy-label-lookup-5e5bc9f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getapi.nl](https://www.zero.xyz/host/api.getapi.nl/llms.txt)
