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.

Available endpoints
Example CronCoco job
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.