cURL
curl --request GET \ --url https://api.example.com/crons/{id}/runs
{ "id": "<string>", "cron_id": "<string>", "job_id": {}, "request_id": {}, "status_code": 123, "success": true, "response_time_ms": 123, "error": {}, "fired_at": "<string>" }
Retrieve execution history for a cron
null
true
curl https://app.cronapi.dev/api/v1/crons/a1b2c3d4-e5f6-7890-abcd-ef1234567890/runs \ -H "Authorization: Bearer your_api_key_here"
[ { "id": "f1e2d3c4-b5a6-7890-fedc-ba0987654321", "cron_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "job_id": null, "request_id": null, "status_code": 200, "success": true, "response_time_ms": 145, "error": null, "fired_at": "2026-04-15T14:30:00.000Z" }, { "id": "e2d3c4b5-a697-8901-edcb-a09876543210", "cron_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "job_id": null, "request_id": null, "status_code": 500, "success": false, "response_time_ms": 2300, "error": "Internal Server Error", "fired_at": "2026-04-15T14:25:00.000Z" } ]