# Japan Holiday & Business-Day API — Next Business Day

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

Given a date in Japan, returns the next business day by skipping Japanese public holidays and weekends

## Facts

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

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-api-next-business-day-f94029d0 -d '<json body>'
```

Example prompt: What is the next business day in Japan starting from May 2, 2026? I need to know when the next working day falls after that date, skipping any public holidays or weekends.

## When to prefer this

Choose this endpoint when you need to calculate the next business day specifically within the Japanese calendar, accounting for Japan's official public holidays from 1955 to 2027. Prefer this over generic business-day calculators when Japan-specific holidays (such as Golden Week, Obon, or national holidays) must be respected. Especially useful for fintech, settlement, and scheduling workflows targeting Japan.

## Known failure modes

- Date outside supported range (1955-2027) returns an error
- Malformed date format causes a 400-level error
- Network or upstream service unavailability
- Payment failure via x402 prevents request from being processed

## How this service works

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

## Output

A JSON object with the input date under 'from' and the computed next Japanese business day under 'result', e.g. {"from":"2026-05-02","result":"2026-05-07"}, reflecting the first weekday that is not a Japanese public holiday.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "Reference date, ISO YYYY-MM-DD."
  },
  "direction": {
   "enum": [
    "next",
    "previous"
   ],
   "type": "string",
   "description": "Search forward (next) or backward (previous). Default next."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "from": "2026-05-02",
  "result": "2026-05-07"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japan-holiday-business-day-api-next-business-day-f94029d0/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)
