# KiHustle Business Day Calculator

> KiHustle Business Day Calculator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Calculates business days between or from dates, excluding weekends and holidays

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/business-day-calculator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-business-day-calculator-22c90279
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JYhTj6sIwOtK6SxV8X_rw

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 kihustle-business-day-calculator-22c90279 -d '<json body>'
```

Example prompt: How many business days are there between January 15 and February 28, 2025?

## When to prefer this

Use this endpoint when you need a lightweight, low-cost ($0.002/call) business day computation from natural language date text. Prefer it for quick scheduling checks, deadline calculations, or working-day counting without setting up a full calendar library.

## Known failure modes

- Malformed or unparseable date text input returns an error status
- Missing required text field in request body causes validation failure
- Ambiguous date formats may yield unexpected results
- Empty string input may return a generic processed result without meaningful data

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field containing the computed business day value and a 'status' field indicating success or failure of the calculation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-business-day-calculator-22c90279/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
