# Agent Clock – Business Day Add

> Agent Clock – Business Day Add is a paid API for AI agents from agent-clock.annushka1190.workers.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Adds a specified number of business days to a given date, returning the resulting business-day-adjusted date (skipping weekends and holidays).

## Facts

- Endpoint: POST https://agent-clock.annushka1190.workers.dev/v1/business/add
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-clock-business-day-add-bd4e94d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ACnWFpvuZv7MHoBgPyIUl

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 agent-clock-business-day-add-bd4e94d2 -d '<json body>'
```

Example prompt: What date is 15 business days from September 15, 2025? Use the business day add tool to calculate it.

## When to prefer this

Use this endpoint when you need to add a precise count of business days to a date, especially for deadline calculations, SLA computations, contract milestones, or any scheduling logic that must skip weekends. It is purpose-built for AI agent workflows with per-call USDC micro-payment pricing and no API key setup required, making it ideal for lightweight, on-demand business calendar arithmetic.

## Known failure modes

- Invalid or missing start date returns an error response
- Negative or non-integer business day counts may return an error
- Malformed request body (missing required fields) returns 400-level error
- Payment failure via x402 protocol returns 402 Payment Required

## How this service works

Time and schedule micro-tools for AI agents: UTC now, cron next-runs, timezone conversion, business-day math, and deadline checks. Pay with USDC via x402 — no API keys.

## Output

A JSON object with a single `result` field containing an ISO 8601 date string (e.g. '2026-09-04') representing the date that is the requested number of business days after the input start date.

## 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": {
    "body": {
     "type": "object"
    },
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "const": "json"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "2026-09-04"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-clock-business-day-add-bd4e94d2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-clock.annushka1190.workers.dev](https://www.zero.xyz/host/agent-clock.annushka1190.workers.dev/llms.txt)
