Railway webhook receiver is running
Schedule these webhooks with CronCoco.
This starter gives you real webhook endpoints on Railway. Create a CronCoco job that points at one of them, then watch the request arrive in your Railway logs.
POST /webhooks/hourly-syncRun an hourly integration or database sync.POST /webhooks/weekly-digestGenerate a weekly user or team digest.POST /webhooks/cleanup-expired-sessionsClean up expired sessions, trials, or temporary records.
curl -X POST https://api.croncoco.io/jobs \
-H "Authorization: Bearer coco_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "hourly-sync",
"cron_expression": "0 * * * *",
"webhook_url": "https://croncoco-railway-template-production.up.railway.app/webhooks/hourly-sync",
"headers": {
"x-cron-secret": "YOUR_CRON_SECRET"
},
"payload": {
"source": "croncoco"
}
}'
Need an API key? Start at croncoco.io.