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" }- Reliable deliveryHMAC-signed webhooks with a documented retry schedule and a dead-letter queue you can replay from.
- Webhook + email channelsSchedule HTTP POSTs to a customer URL, or email deliveries to verified addresses — same scheduler, same retries.
- API + operator UIA programmatic REST surface for agents and automation, plus a small dashboard for humans inspecting deliveries and replaying dead-letters.
- Agent-native (MCP)Connect Claude, Cursor, and any MCP-aware agent over HTTPS at
/mcpor a static stdio binary — same tools, same auth, same project scoping as the REST API.