# agent402.tools Meeting Scheduler

> agent402.tools Meeting Scheduler is a paid API for AI agents from agent402.tools, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Converts a proposed UTC meeting time into all attendees' local times, verifies it falls on a working day, and projects the meeting end time — all in a single API call.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/meeting-scheduler
- Price: $0.05/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-meeting-scheduler-73a8d8dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gc177JKDdF7tCbaLKCJ_s

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-meeting-scheduler-73a8d8dd -d '<json body>'
```

Example prompt: We're trying to set up a 1h30m team call at 2026-07-15T14:00:00Z — can you check what time that is for attendees in America/New_York, Europe/London, and Asia/Tokyo, confirm it's a working day for all of them, and tell me when the meeting would end in each timezone?

## When to prefer this

Use this endpoint when you need to resolve a single proposed UTC meeting time against multiple attendees in different IANA timezones in one shot, eliminating manual timezone lookups and working-day checks. Prefer this over building your own timezone conversion logic when you also need working-day validation and end-time projection bundled together.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error
- Malformed ISO 8601 UTC timestamp causes a parsing failure
- Invalid duration string format (e.g. not matching '1h30m' or '45m' pattern) causes rejection
- Payment of $0.05 USDC not provided or rejected results in 402 response
- Missing required fields (attendeeTzs, durationStr, or proposedTime) returns a validation error

## How this service works

Bundled execution of the Meeting scheduler workflow - Schedule a meeting across timezones without the round-tripping. Convert a proposed UTC slot into every attendee's local time, verify it lands on a working day for each, project the end time, ge...

## Output

Returns each attendee's local start and end times for the proposed meeting, confirms whether the slot falls on a working day for each timezone, and projects the meeting end time — all derived from the single UTC input and duration string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "attendeeTzs": {
   "type": "string",
   "description": "Comma-separated IANA timezones (e.g. 'America/New_York, Europe/London, Asia/Tokyo')"
  },
  "durationStr": {
   "type": "string",
   "description": "Meeting duration as a duration string (e.g. '1h30m' or '45m')"
  },
  "proposedTime": {
   "type": "string",
   "description": "Proposed start time in UTC ISO 8601 (e.g. '2026-07-15T14:00:00Z')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "attendeeTzs": "America/New_York, Europe/London, Asia/Tokyo",
   "durationStr": "1h",
   "proposedTime": "2026-07-15T14:00:00Z"
  },
  "pack": "meeting-scheduler",
  "steps": [
   {
    "ok": true,
    "slug": "time",
    "result": {}
   },
   {
    "ok": true,
    "slug": "time-convert",
    "result": {}
   },
   {
    "ok": true,
    "slug": "business-days",
    "result": {}
   },
   {
    "ok": true,
    "slug": "add-time",
    "result": {}
   },
   {
    "ok": true,
    "slug": "relative-time",
    "result": {}
   },
   {
    "ok": true,
    "slug": "cron-next",
    "result": {}
   },
   {
    "ok": true,
    "slug": "date-diff",
    "result": {}
   }
  ],
  "summary": "7/7 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-meeting-scheduler-73a8d8dd/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)
