# Cron Parser API

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

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

## Facts

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

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 cron-parser-api-d80702e3
```

Example prompt: When will the cron expression '0 9 * * 1-5' run next — give me the next 10 occurrences in America/New_York time.

## When to prefer this

Use this endpoint when you need to programmatically parse a cron expression and retrieve concrete future run timestamps, especially when timezone awareness is important. Prefer this over manual cron calculators when an agent needs to verify a schedule, generate human-readable next-run previews, or validate that a cron expression behaves as expected.

## Known failure modes

- Invalid cron expression returns an error describing the parse failure
- Unsupported or misspelled IANA timezone returns a timezone error
- Count exceeding 20 may be capped or return a validation error
- Missing expression parameter results in a bad request error

## How this service works

Parse a cron expression and get next run times

## Output

A list of upcoming scheduled run timestamps (up to 20) derived from the parsed cron expression, returned in the specified IANA timezone. Useful for verifying cron schedules and understanding when jobs will execute.

## 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/cron-parser-api-d80702e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cron-parser.api.klymax402.com](https://www.zero.xyz/host/cron-parser.api.klymax402.com/llms.txt)
