# Cron Expression to Plain English Translator

> Cron Expression to Plain English Translator is a paid API for AI agents from toolbelt402.tpoborne.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Translates a cron expression into a human-readable plain English description (e.g. '0 */4 * * *' → 'Every 4 hours').

## Facts

- Endpoint: GET https://toolbelt402.tpoborne.workers.dev/cron/describe
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cron-expression-to-plain-english-translator-e94f630a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3VIEM-sVbBaGnVf7erhBP

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-expression-to-plain-english-translator-e94f630a
```

Example prompt: Can you tell me in plain English what this cron expression means: '0 9 * * 1-5'?

## When to prefer this

Use this endpoint when you need to display a cron schedule to a non-technical user, document a scheduled task in human-readable form, or verify that a cron expression encodes the intended recurrence. Prefer this over the companion /cron/next endpoint when you want a descriptive summary rather than concrete upcoming timestamps.

## Known failure modes

- Invalid or malformed cron expression returns an error response
- Missing 'expr' query parameter causes a 400-level error
- Non-standard or extended cron syntax (e.g. @yearly, 6-field with seconds) may not be supported or may return unexpected results

## How this service works

Translate a cron expression into plain English (e.g. "Every 15 minutes, weekdays") — the companion to /cron/next.

## Output

Returns a plain English string describing the cron schedule's recurrence pattern, such as 'Every 15 minutes on weekdays' or 'At 9:00 AM, Monday through Friday'. The response is a concise, human-readable interpretation of the cron expression's timing semantics.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "expr"
     ],
     "properties": {
      "expr": {
       "type": "string",
       "description": "Cron expression to translate to plain English"
      }
     }
    }
   },
   "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/cron-expression-to-plain-english-translator-e94f630a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolbelt402.tpoborne.workers.dev](https://www.zero.xyz/host/toolbelt402.tpoborne.workers.dev/llms.txt)
