# Timezone Meeting Slot Finder

> Timezone Meeting Slot Finder is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0324/call, status unknown (last checked 2026-09-14).

Finds optimal meeting times across multiple time zones, returning ranked slots by fairness with local times for each participant.

## Facts

- Endpoint: GET https://api.strale.io/x402/timezone-meeting-find
- Price: $0.0324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-13da305d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_25YTg1Erpy2Ew0XkMJ0XU

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 api-strale-io-13da305d
```

Example prompt: Find the best meeting times for participants in America/New_York, Europe/London, and Asia/Tokyo — we want a 60-minute slot during preferred hours of 09:00-17:00, ranked by fairness for everyone.

## When to prefer this

Use this endpoint when you need an algorithmic, fairness-ranked recommendation of meeting times across multiple IANA time zones, especially for globally distributed teams where no single participant should consistently bear unsociable hours. Prefer it over manual calendar tools when you want quantified fairness scoring rather than just overlap detection.

## Known failure modes

- Invalid or unrecognized IANA timezone names return an error
- No overlapping slots found when preferred hours don't intersect across time zones
- Missing required 'timezones' query parameter returns 400
- Only one timezone provided yields trivially unranked results
- Malformed preferred_hours format (not HH:MM-HH:MM) may cause parse errors

## How this service works

Find optimal meeting times across time zones. Returns ranked slots by fairness, with local times for each participant. Algorithmic.

## Output

A ranked list of meeting slot candidates with fairness scores, showing the proposed UTC time and the corresponding local time for each participant's timezone, ordered from most to least equitable for all attendees.

## Example request

```json
{
 "timezones": [
  "America/New_York",
  "Europe/London",
  "Asia/Tokyo"
 ],
 "preferred_hours": "09:00-17:00",
 "duration_minutes": 60
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "timezones"
     ],
     "properties": {
      "timezones": {
       "type": "array",
       "description": "List of IANA timezone names"
      },
      "preferred_hours": {
       "type": "string",
       "description": "Preferred hours (e.g. 09:00-17:00)"
      },
      "duration_minutes": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-13da305d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
