# WorkdayChecker — Business Day & Holiday Lookup

> WorkdayChecker — Business Day & Holiday Lookup is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Returns whether a given date is a business day, identifies the next business day, and lists upcoming holidays within a window.

## Facts

- Endpoint: GET https://api.borisinc.com/paid/util/workday
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/workdaychecker-business-day-holiday-lookup-b8b5b1a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H3jHrHRb6RpPk0010W7cq

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 workdaychecker-business-day-holiday-lookup-b8b5b1a9
```

Example prompt: Is July 20, 2026 a business day, and if not, when is the next one? Also let me know if there are any upcoming US holidays in that window.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call (no API key required) business calendar lookup — particularly for checking whether a specific date is a workday, finding the next business day, or counting business days in a window. Prefer it over rolling your own calendar logic when you need US holiday awareness built in and want zero setup overhead.

## Known failure modes

- Invalid or unparseable date input returns an error
- Missing required query parameters may return a 400 error
- Network timeout on rare infrastructure issues
- Date far in the future may have incomplete holiday data

## How this service works

Live Steam best-sellers, deals, per-app detail and IGDB metadata, Twitch hype scores, and agent utilities for verification and extraction. From $0.001 a call, free samples on every endpoint, auth-then-capture. MCP and HTTP.

## Output

Returns a JSON object with: today's date, the day of the week, a boolean indicating whether it's a business day, the date of the next business day, a list of holidays within the query window (with names and dates), and the count of business days in the window.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-20",
  "weekday": "Monday",
  "is_business_day": true,
  "next_business_day": "2026-07-21",
  "holidays_in_window": [
   {
    "date": "2026-09-07",
    "name": "Labor Day"
   }
  ],
  "business_days_in_window": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/workdaychecker-business-day-holiday-lookup-b8b5b1a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.borisinc.com](https://www.zero.xyz/host/api.borisinc.com/llms.txt)
