cURL
curl --request GET \ --url https://api.example.com/jobs/{id}/runs
{ "id": "<string>", "cron_id": {}, "job_id": "<string>", "request_id": {}, "status_code": 123, "success": true, "response_time_ms": 123, "error": {}, "fired_at": "<string>" }
Retrieve execution history for a job
null
true
curl https://app.cronapi.dev/api/v1/jobs/b2c3d4e5-f6a7-8901-bcde-f12345678901/runs \ -H "Authorization: Bearer your_api_key_here"
[ { "id": "c3d4e5f6-a7b8-9012-cdef-123456789012", "cron_id": null, "job_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901", "request_id": null, "status_code": 200, "success": true, "response_time_ms": 230, "error": null, "fired_at": "2026-04-20T15:00:00.000Z" } ]