# holiday.agentic-jp.com Business Days

> holiday.agentic-jp.com Business Days 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-13).

Returns business-day information (whether a given date is a business day, count of business days, etc.) for a specified resource or date range, tailored for Japan.

## Facts

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

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 holiday-agentic-jp-com-business-days-ce16343e -d '<json body>'
```

Example prompt: Can you check whether March 20, 2025 is a business day in Japan, and how many business days there are between March 20 and April 10, 2025?

## When to prefer this

Choose this endpoint when you need accurate Japanese business-day and public holiday information, especially for scheduling, deadline calculation, or calendar validation specific to Japan. Prefer this over generic calendar APIs when Japanese holidays and business-day rules are critical to correctness.

## Known failure modes

- Invalid date format provided — endpoint may return 400 or error object
- Date range too large — may time out or return an error
- Resource identifier not recognized — returns not-found or empty result
- Missing required fields in POST body — returns validation error
- Network or service unavailability — returns 5xx error

## How this service works

Count business days, weekend days, and public holidays across a Japanese (JP) calendar date range.

## Output

A structured response indicating whether the queried date(s) are business days in Japan, potentially including a count of business days, holiday names, and working day status for each date in the range.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "Range end, ISO date YYYY-MM-DD (inclusive)."
  },
  "from": {
   "type": "string",
   "description": "Range start, ISO date YYYY-MM-DD (inclusive)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "2026-05-31",
  "from": "2026-05-01",
  "total_days": 31,
  "holiday_days": 3,
  "weekend_days": 10,
  "business_days": 18
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/holiday-agentic-jp-com-business-days-ce16343e/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)
