# agent402.tools Timezone Planner Bundled Workflow

> agent402.tools Timezone Planner Bundled Workflow is a paid API for AI agents from agent402.tools, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Runs time zone conversion, business day calculation, and cron schedule preview in a single x402-paid API call.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/timezone-planner
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-timezone-planner-bundled-workflow-933679ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TfS0x_g4WP1Val1hVr87q

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 agent402-tools-timezone-planner-bundled-workflow-933679ee -d '<json body>'
```

Example prompt: Convert 2026-06-11T10:00:00 from America/New_York to Asia/Tokyo, and also tell me the business days and upcoming cron schedule for that time — run all three checks at once.

## When to prefer this

Use this endpoint when you need all three scheduling-related computations — timezone conversion, business day calculation, and cron schedule preview — in a single call, saving cost and latency compared to calling each tool separately. Prefer it over individual timezone or cron APIs when you need the combined output for scheduling automation or cross-timezone planning.

## Known failure modes

- Invalid or unrecognized timezone string returns an error for 'from' or 'to' fields
- Malformed ISO datetime string causes parsing failure
- Partial success may occur if one of the three underlying tools (time-convert, business-days, cron-next) fails while others succeed
- Network or payment processing issues may result in no response despite payment attempt

## How this service works

Bundled execution of the Timezone planner workflow - Time zone conversion, business day calculation, and cron schedule preview - scheduling in one pass. One x402 payment runs 3 underlying tools (time-convert, business-days, cron-next); partial-success per step.

## Output

A bundled response covering: the converted datetime in the target timezone, business day calculations, and a preview of upcoming cron schedule occurrences — all returned in a single API response for the one x402 payment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "Target timezone (e.g. Asia/Tokyo)"
  },
  "from": {
   "type": "string",
   "description": "Source timezone (e.g. America/New_York)"
  },
  "time": {
   "type": "string",
   "description": "ISO datetime to convert (e.g. 2026-06-11T10:00:00)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "to": "Asia/Tokyo",
   "from": "America/New_York",
   "time": "2026-06-11T10:00:00"
  },
  "pack": "timezone-planner",
  "steps": [
   {
    "ok": true,
    "slug": "time-convert",
    "result": {}
   },
   {
    "ok": true,
    "slug": "business-days",
    "result": {}
   },
   {
    "ok": true,
    "slug": "cron-next",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-timezone-planner-bundled-workflow-933679ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
