Backend automation,
without the backend.
Webhooks receive data from external services. Schedulers run code on a timer. Both execute server-side logic with zero infrastructure.
Start buildingA URL that runs your code
Create an HTTP endpoint that receives POST requests from any external service. Your AI-generated handler processes the payload, talks to your database, calls APIs, and returns a response.
Create webhook app
Describe what you want
AI writes handler
Paste URL in external service
Runs automatically
What your handler can do
- Read and write to your app's database
- Call external APIs (Slack, email, SMS, anything)
- Use secrets securely (API keys never exposed to the client)
- Return a JSON response to the calling service
- Log to a console you can inspect in the dashboard
What you see in the dashboard
- Your unique endpoint URL, ready to copy
- Webhook secret for signature verification
- Test button to send a sample payload
- Code editor with your handler logic
- Execution logs with timestamps and status codes
Verified integrations
Any service that sends standard HMAC-signed webhooks will work out of the box.
Cron jobs, without the server
Code that runs on a timer. Set the schedule with a visual editor, describe the task in plain English, and let AI write the handler. Toggle it on and it runs.
Create scheduler
Describe the task
AI writes handler & sets schedule
Toggle on
Visual schedule editor
Next 3 runs
What you get
- Visual frequency, time, and day pickers -- no cron syntax needed
- Human-readable schedule preview
- Next 3 runs displayed so you know exactly when it fires
- Active / Paused toggle to control execution
- "Run Now" button for on-demand testing
- Full execution logs with timestamps
Same capabilities as webhooks:
Database access, external API calls, secure secrets, and console logging.
Plan limits
Free tier: 2 active schedulers, 15-minute minimum interval. Need more? Upgrade.
Webhook limits
| Free | Premium | Enterprise | |
|---|---|---|---|
| Executions / day | 500 | 10,000 | 100,000 |
| Timeout | 15 seconds | 30 seconds | 60 seconds |
Scheduler limits
| Free | Premium | Enterprise | |
|---|---|---|---|
| Runs / day | 100 | 2,000 | 20,000 |
| Active schedulers | 2 | 10 | 50 |
| Minimum interval | 15 minutes | 1 minute | 1 minute |
Stop managing infrastructure.
Start building logic.
Describe what you need, let AI generate the code, and deploy it with a toggle. No servers, no DevOps, no YAML.
Start building