cURL
curl --request GET \ --url https://api.example.com/jobs
{ "Authorization": "<string>", "id": "<string>", "user_id": "<string>", "name": {}, "at": "<string>", "url": "<string>", "method": "<string>", "headers": {}, "body": {}, "status": "<string>", "created_at": "<string>" }
Retrieve all jobs for the authenticated user
Bearer your_api_key_here
GET
POST
DELETE
pending
completed
failed
curl https://app.cronapi.dev/api/v1/jobs \ -H "Authorization: Bearer your_api_key_here"
[ { "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901", "user_id": "d4e5f6a7-b890-1234-cdef-567890abcdef", "name": "Send welcome email", "at": "2026-04-20T15:00:00.000Z", "url": "https://example.com/send-email", "method": "POST", "headers": {}, "body": {"user_id": "usr_123"}, "status": "pending", "created_at": "2026-04-15T10:00:00.000Z" } ]