# Strale Crontab Generator

> Strale Crontab Generator is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-15).

Converts a natural language schedule description or cron expression into a valid crontab entry

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/crontab-generate
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-crontab-generator-c17a79fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mY4gtyXrJjZPHbQnFmA_p

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 strale-crontab-generator-c17a79fd
```

Example prompt: Can you generate a cron expression for running a task every weekday at 8:30am?

## When to prefer this

Use this endpoint when an agent or user needs to programmatically generate crontab expressions from plain English schedule descriptions, or validate/parse existing cron expressions, without manually writing cron syntax. Prefer this over general-purpose LLM completions when you want a structured, auditable output with a cryptographic audit trail.

## Known failure modes

- Ambiguous or unrecognizable schedule description returns an error or low-confidence result
- Invalid cron expression syntax in input may return a parsing error
- Overly complex or contradictory schedules (e.g. 'every 7th minute on the 31st of February') may not be representable in standard cron format

## How this service works

Convert natural language schedule to cron expression, or explain an existing cron expression. Returns next run times.

## Output

A valid crontab entry or cron expression representing the requested schedule, derived from the natural language description or parsed cron input provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "description"
 ],
 "properties": {
  "description": {
   "type": "string",
   "description": "Schedule in natural language or cron expression"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "next_5_runs": {
  "type": "array"
 },
 "human_readable": {
  "type": "string"
 },
 "cron_expression": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-crontab-generator-c17a79fd/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)
