# Meeting Slots Finder

> Meeting Slots Finder is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Find all 30-minute UTC time slots on a given date where every specified IANA timezone falls within a configurable local business-hours window (default 09:00–17:00).

## Facts

- Endpoint: GET https://402.com.tr/api/x402/meeting-slots
- 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/meeting-slots-finder-45c12432
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-KQEeR33MknN_zAC3bygW

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 meeting-slots-finder-45c12432
```

Example prompt: Find all 30-minute meeting slots on December 5th that work within business hours for people in America/New_York, Europe/London, and Asia/Tokyo — show me what times overlap.

## When to prefer this

Use this endpoint when you need a pure, stateless computation of overlapping business-hours windows across multiple IANA timezones for a specific date. It is ideal for agent workflows that must find valid meeting slots without access to calendar APIs, and when you don't need holiday awareness or personal availability data. Prefer it over calendar-integrated solutions when simplicity, speed, and no OAuth setup are priorities.

## Known failure modes

- Missing required 'zones' parameter returns an error
- Invalid IANA timezone string causes rejection or empty results
- No overlapping slots exist for the given date and window — returns empty list
- Invalid date format (not YYYY-MM-DD) causes a parse error
- startHour or endHour outside 0–23 range may produce unexpected results
- No awareness of holidays, personal calendars, or DST edge cases on certain dates

## How this service works

Find 30-minute UTC slots where every zone is inside a local window (default 09–17) on a given date. Pass zones= IANA list. Does not know holidays or personal calendars.

## Output

A list of 30-minute UTC time slots on the requested date where every specified IANA timezone simultaneously falls within the configured local hour window (default 09:00–17:00 local). Each slot is expressed in UTC so it can be directly used for calendar invites or scheduling systems.

## 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": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "zones"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Date YYYY-MM-DD"
      },
      "zones": {
       "type": "string",
       "description": "Timezones (comma-separated)"
      },
      "endHour": {
       "type": "string",
       "description": "Local end hour"
      },
      "startHour": {
       "type": "string",
       "description": "Local start hour"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/meeting-slots-finder-45c12432/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
