# Vibesprings Holiday Calendar API

> Vibesprings Holiday Calendar API is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns official public and bank holiday dates for a given country and year, including local names, holiday types, and regional scopes

## Facts

- Endpoint: GET https://vibesprings.net/api/holidays
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibesprings-net-16bae0f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DV-S2w2CKtYOp-xXu-zmm

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 vibesprings-net-16bae0f8
```

Example prompt: Can you get me all the official public and bank holidays for Germany in 2025, including their local names and whether each one is a national or regional holiday?

## When to prefer this

Use this endpoint when you need authoritative, structured public holiday data for over 100 countries — especially for workforce scheduling, banking clearance day calculations, international shipping timeline planning, or importing holidays into calendars. Prefer this over manual scraping or general-purpose search when you need machine-readable, reliably structured output with local native names and bank holiday indicators.

## Known failure modes

- Missing required 'country' query parameter returns a 400 error
- Invalid or unsupported country code returns an empty list or 404
- Year outside supported range returns an error or empty response
- Payment failure via x402 protocol returns a 402 Payment Required response
- Network timeout or server error returns a 500 response

## How this service works

Comprehensive public and bank holiday calendar reference database. Covers over 100 countries globally. Returns official national holiday dates, local/native names, public bank holiday indicators, and regional holiday scopes. Essential for workforce scheduling, school calendar imports, international banking clearing day calculations, and e-commerce shipping timeline planning.

## Output

A list of official public and bank holidays for the requested country and year, including each holiday's date, English name, local/native name, bank holiday status indicator, and regional scope (national vs. sub-regional).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "year": 2025,
   "country": "US"
  }
 }
}
```

## 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",
     "required": [
      "country"
     ],
     "properties": {
      "year": {
       "type": "number",
       "description": "4-digit calendar year to query (e.g. 2025)"
      },
      "country": {
       "type": "string",
       "description": "ISO 3166-1 alpha-2 country code (e.g. US, GB, DE, FR, JP)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "year": 2025,
  "country": "US",
  "holidays": [
   {
    "date": "2025-01-01",
    "name": "New Year's Day",
    "fixed": true,
    "types": [
     "Public"
    ],
    "global": true,
    "localName": "New Year's Day"
   }
  ],
  "total_holidays": 11
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibesprings-net-16bae0f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
