GET
/v1/explainCron Expression Explainer
Explain a 5-field cron expression in plain English.
Part of Cron Expression Explainer· Rate limits: 60 req/min
Parameters
exprquerystringrequired5-field cron expression
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| expr | query | string | Yes | 5-field cron expression |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Code examples
cURL
curl -s "https://crongen.apiseeker.com/v1/explain" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response
JSON
{
"success": true,
"data": {
"expression": "0 9 * * 1-5",
"valid": true,
"summary": "At minute 0 of hour 9, every day of month, every month, on weekdays Mon–Fri"
},
"request_id": "req_example"
}Errors
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
Try this endpoint
API Playground
Cron Expression Explainer
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
crongen.apiseeker.comhttps://crongen.apiseeker.com/v1/explainStatus: —Latency: —
Response headers
Log in to run a test and see headers.
Response body
Log in required for live testing.
Generated snippets
cURL
curl -s "https://crongen.apiseeker.com/v1/explain" \
-H "X-SEEKER-Key: YOUR_API_KEY"