# Japan Holiday & Business-Day Batch API

> Japan Holiday & Business-Day Batch API is a paid API for AI agents from holiday.agentic-jp.com, paid per call via x402, $0.0032/call, status unknown (last checked 2026-09-13).

Classifies a batch of dates as Japanese public holidays or business days, covering 1955–2027, with per-call USDC micropayment via x402.

## Facts

- Endpoint: POST https://holiday.agentic-jp.com/batch
- Price: $0.0032/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japan-holiday-business-day-batch-api-b7561aba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I_t9kUU2uXCnvhgMYv4Rz

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 japan-holiday-business-day-batch-api-b7561aba -d '<json body>'
```

Example prompt: Can you check whether March 20, April 29, and May 3 2025 are Japanese public holidays or regular business days? I need to classify all three at once.

## When to prefer this

Use this endpoint when you need to classify Japanese dates as holidays or business days in batch, especially for scheduling, payroll, SLA calculation, or calendar enrichment in a Japan-context application. Prefer it over building your own holiday table when you need authoritative data from 1955 to 2027 and want pay-per-call pricing with no API key setup.

## Known failure modes

- Exceeding 100 items per batch returns a validation error
- Dates outside the 1955–2027 range may return unknown or error
- Malformed date formats cause request rejection
- Payment failure via x402 results in 402 response blocking the call
- Missing required 'items' array returns a 400 bad request

## How this service works

Japanese public holidays 1955-2027 and business-day calculation. Pay per call with USDC via x402 — no API key.

## Output

Returns a classification for each submitted date item indicating whether it is a Japanese public holiday (with the holiday name) or a business day, covering dates from 1955 to 2027.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "items"
 ],
 "properties": {
  "items": {
   "type": "array",
   "description": "Dates to classify; each item = {id, date} (max 100 items)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japan-holiday-business-day-batch-api-b7561aba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from holiday.agentic-jp.com](https://www.zero.xyz/host/holiday.agentic-jp.com/llms.txt)
