# Dutch School Holidays API

> Dutch School Holidays API is a paid API for AI agents from api.agenticweb.nl, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns current Dutch school-holiday periods filtered by year, region, or date

## Facts

- Endpoint: GET https://api.agenticweb.nl/api/v1/nl/school-holidays
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dutch-school-holidays-api-46f752fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LCfWyyt02qt1HAS7f4IYf

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-school-holidays-api-46f752fe
```

Example prompt: What are all the Dutch school holidays for the 2025-2026 school year in the Noord region?

## When to prefer this

Use this endpoint when you need official Dutch school-holiday dates organized by region and school year, especially for scheduling, travel planning, or calendar enrichment specific to the Netherlands. Prefer this over generic holiday APIs when Dutch regional school-holiday distinctions (Noord, Midden, Zuid) matter.

## Known failure modes

- Invalid or unsupported year returns empty or error response
- Unknown region name returns no results
- Date out of supported range returns empty holidays array
- Missing required parameters may return a 400 bad request
- Payment not made or invalid results in 402 Payment Required

## How this service works

Current Dutch school-holiday dates by year, region or date. Payment constitutes acceptance of the terms at https://agenticweb.nl/terms.

## Output

Returns an array of holiday periods each with a holiday name, the applicable region, and start/end dates, plus the school year identifier (e.g. '2025-2026').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "object",
  "properties": {
   "holidays": {
    "type": "array",
    "description": "Holiday periods with name, region and start/end dates."
   },
   "school_year": {
    "type": "string",
    "example": "2025-2026"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dutch-school-holidays-api-46f752fe/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)
