# Klymax402 Cron Expression Parser

> Klymax402 Cron Expression Parser is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Parses a cron expression and returns the next N scheduled run times in a specified timezone

## Facts

- Endpoint: GET https://klymax402.com/api/cron-parser/api/parse
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-cron-expression-parser-9e874254
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fE2xbV1lwwwLeV3jwmQK7

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 klymax402-cron-expression-parser-9e874254
```

Example prompt: Parse the cron expression '0 9 * * 1-5' and show me the next 10 scheduled run times in the America/Chicago timezone.

## When to prefer this

Use this endpoint when you need to quickly preview or validate a cron schedule without running a local cron parser, especially when you need timezone-aware results or want to inspect future execution times for debugging or documentation purposes.

## Known failure modes

- Invalid cron expression syntax returns an error or empty result
- Unrecognized IANA timezone string causes a validation error
- Count value exceeding max of 20 may be clamped or rejected
- Missing expression parameter results in a bad request error

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a list of upcoming scheduled datetime strings representing the next N times the provided cron expression will fire, computed relative to the current time in the requested IANA timezone.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "number",
   "description": "Number of next run times to return (default: 5, max: 20)"
  },
  "timezone": {
   "type": "string",
   "description": "IANA timezone (default: UTC, e.g. America/New_York)"
  },
  "expression": {
   "type": "string",
   "description": "Cron expression (e.g. '0 9 * * 1-5' or '*/5 * * * *')"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-cron-expression-parser-9e874254/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
