# Dutch Vacation Region & Holiday Dates Lookup

> Dutch Vacation Region & Holiday Dates Lookup is a paid API for AI agents from api.agenticweb.nl, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Resolves a Dutch place name to its vacation region (noord/midden/zuid) and returns the associated school holiday dates for that region.

## Facts

- Endpoint: POST https://api.agenticweb.nl/api/v1/nl/vacation-region
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dutch-vacation-region-holiday-dates-lookup-9c26b8be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h-hGrmo5SlCSgTq3fhKnR

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-vacation-region-holiday-dates-lookup-9c26b8be -d '<json body>'
```

Example prompt: Which Dutch vacation region is Utrecht in, and what are the current school holiday dates for that region?

## When to prefer this

Use this endpoint when you need to determine which of the three Dutch school holiday regions (noord, midden, or zuid) a specific Dutch city, municipality, or province belongs to, and want the associated holiday dates in a single call. Prefer this over manual lookup tables or general geographic APIs that don't know about the Dutch holiday region system.

## Known failure modes

- Unrecognized place name — place cannot be resolved to a Dutch gemeente or province
- Ambiguous place name — multiple matches possible
- Missing query parameter — no place provided
- Payment failure — x402 payment not completed or insufficient
- Service unavailable — API returns 5xx

## How this service works

Resolve a Dutch place to its vacation region + holiday dates. Send the parameters in a JSON request body via POST. Payment constitutes acceptance of the terms at https://agenticweb.nl/terms.

## Output

Returns the queried place echo, the vacation region classification (noord, midden, or zuid), and an array of the current school holiday date ranges applicable to that region.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "plaats": {
   "type": "string",
   "description": "Place/city name."
  },
  "gemeente": {
   "type": "string",
   "description": "Municipality name."
  },
  "postcode": {
   "type": "string",
   "description": "Dutch postcode, e.g. 1011AC (resolved to gemeente/region via PDOK). In the JSON request body."
  },
  "province": {
   "type": "string",
   "description": "Province name."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "object",
  "properties": {
   "query": {
    "type": "object",
    "description": "Echo of the resolved place/gemeente/province."
   },
   "region": {
    "enum": [
     "noord",
     "midden",
     "zuid"
    ],
    "type": "string"
   },
   "holidays": {
    "type": "array",
    "description": "That region's current holiday dates."
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dutch-vacation-region-holiday-dates-lookup-9c26b8be/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)
