curl -X POST https://app.cronapi.dev/api/v1/crons \
-H "Authorization: Bearer your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Daily report",
"cron": "0 9 * * *",
"url": "https://example.com/report",
"method": "POST",
"headers": {"X-Custom": "value"},
"body": {"notify": true}
}'