# Strale Business Day Check

> Strale Business Day Check is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-15).

Checks whether a given date is a business day in a specified country, accounting for local public holidays and weekends.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/business-day-check
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-business-day-check-c24d2a04
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PCw0CV2QxvzTZsvVTDZM6

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-business-day-check-c24d2a04
```

Example prompt: Can you check if December 26, 2024 is a business day in the UK?

## When to prefer this

Choose this endpoint when you need reliable, auditable business day verification across 27 countries with cryptographic audit trails — ideal for financial workflows, contract scheduling, or compliance use cases where you need a verifiable record of the check. Prefer it over building your own holiday calendar logic or using general-purpose date libraries that lack country-specific public holiday data.

## Known failure modes

- Invalid date format (not YYYY-MM-DD) returns a validation error
- Unsupported or invalid ISO country code returns an error
- Country code outside the 27 supported countries may return no data or an error
- Network timeout or service unavailability returns a 5xx error
- Missing required query parameters (date or country_code) returns a 400 error

## How this service works

Check if a specific date is a business day in a given country. Accounts for weekends and public holidays. Also returns the next business day if the given date is not one.

## Output

Returns whether the specified date is a business day in the given country, along with an audit record containing a cryptographic chain hash for verification and traceability of the result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "country_code",
  "date"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "Date to check (YYYY-MM-DD)"
  },
  "country_code": {
   "type": "string",
   "description": "ISO 2-letter country code"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "reason": {
  "type": "string"
 },
 "is_business_day": {
  "type": "boolean"
 },
 "next_business_day": {
  "type": "string"
 },
 "previous_business_day": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-business-day-check-c24d2a04/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)
