Scheduleit

Scheduleit

Cron for the web and agent era.

A durable scheduler for HTTP webhooks. Schedule one-shot, recurring, or cron-triggered events; we deliver them on time, retry on failure, and surface what happened — so you don't have to babysit a queue or run your own scheduling infrastructure.

One request schedules a delivery

$ curl -X POST https://getscheduleit.app/api/events \
    -H "Authorization: Bearer sk_a3f7c2b1…" \
    -d '{ "schedule": { "kind": "oneshot", "fireAt": "2026-07-04T12:00:00Z" },
          "target":   { "channel": "webhook", "url": "https://example.com/hook" } }'

201  { "id": "0f9c2b6e…", "state": "scheduled", "nextFireAt": "2026-07-04T12:00:00Z" }