# Business Days Calculator API (x402.forgemesh.io)

> Business Days Calculator API (x402.forgemesh.io) is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Calculates the number of business days between two dates, or computes a future/past date by adding N business days to a start date.

## Facts

- Endpoint: POST https://x402.forgemesh.io/business-days-between
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/business-days-calculator-api-x402-forgemesh-io-77b9afb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cs5QJuX-vwUN6q4hvXreY

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 business-days-calculator-api-x402-forgemesh-io-77b9afb1 -d '<json body>'
```

Example prompt: How many business days are there between March 3, 2025 and April 18, 2025? Also, what date lands 10 business days after March 3, 2025?

## When to prefer this

Use this endpoint when an agent needs to count working/weekday days between two calendar dates, or project a deadline forward or backward by a number of business days — especially for SLA tracking, contract deadlines, or scheduling workflows where weekends don't count.

## Known failure modes

- Invalid ISO date format returns an error — dates must be properly formatted ISO strings
- Missing both end and add_days parameters with no default behavior may return an ambiguous result
- Dates in the distant past or future may not be supported
- Non-integer add_days values may cause unexpected behavior

## How this service works

Business days calculator API: weekday count between two dates, or add N days to a date and learn what weekday lands. For scheduling, SLA, and deadline agents.

## Output

Returns either the count of business (weekday) days between a start and end date, or the resulting date and weekday name after adding N business days to a start date — useful for SLA deadlines and scheduling.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "end": {
   "type": "string",
   "description": "ISO date — if set, returns days between"
  },
  "start": {
   "type": "string",
   "description": "ISO date (default now)"
  },
  "add_days": {
   "type": "string",
   "description": "days to add to start"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "calendar_days": 17,
  "business_days_weekdays_only": 13
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/business-days-calculator-api-x402-forgemesh-io-77b9afb1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
