# Strale Public Holiday Lookup

> Strale Public Holiday Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0324/call, status unknown (last checked 2026-09-15).

Look up official public holidays for a given country and year, returning structured results with audit records.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/public-holiday-lookup
- Price: $0.0324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-public-holiday-lookup-61f4bcb3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j7WTrjZiUfkF8y6RO_OUH

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 strale-public-holiday-lookup-61f4bcb3
```

Example prompt: What are all the public holidays in Germany for 2025?

## When to prefer this

Choose this endpoint when you need independently verified, audit-trailed public holiday data across one of 27 supported countries, especially in compliance, payroll, or scheduling contexts where you need a tamper-evident record of the data returned. Prefer this over generic calendar APIs when auditability and trust provenance matter.

## Known failure modes

- Unsupported country_code returns an error or empty result — only 27 countries are supported
- Missing required country_code parameter returns a validation error
- Invalid or future year with no data returns empty or error response
- Network or upstream data provider failure returns a 5xx error
- Malformed query parameters return a 400-level error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a structured list of public holidays for the specified country and year, including holiday names and dates. Each response includes a cryptographic audit record with chain hashing for tamper-evident verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country_code"
     ],
     "properties": {
      "year": {
       "type": "number"
      },
      "country_code": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-public-holiday-lookup-61f4bcb3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
