Quick Start
Get your first scheduled job running in under 2 minutes.
1. Create an account
Sign up at clawtick.com with email or Google. You get the Free plan automatically. No credit card required.
2. Create a job
You have two options: webhook jobs (HTTP endpoints) or OpenClaw jobs (AI agent gateway).
Option A: Webhook Job (fastest)
Schedule any HTTP endpoint to be called on a cron schedule:
- Go to Dashboard → Jobs
- Click Create Job
- Select Webhook integration
- Enter your endpoint URL, method, and schedule
- Click Create
Option B: OpenClaw Job (AI agents)
Send messages to your OpenClaw AI agents on a schedule:
- First, configure your gateway
- Go to Dashboard → Jobs
- Click Create Job
- Select OpenClaw integration
- Write your agent message and pick a schedule
- Click Create
3. (Optional) Install the CLI
npm install -g clawtickGenerate an API key in Dashboard → API Keys, then authenticate:
clawtick login --key cp_your_api_keyCreate a job from the terminal:
clawtick jobs create \
--name "Daily report" \
--cron "0 9 * * *" \
--message "Generate daily summary" \
--integration webhook \
--webhook-url "https://api.example.com/report"4. Monitor execution
Check Dashboard → History to see every job run with status, duration, and error details. If a job fails 3 times in a row, the circuit breaker auto-disables it and sends you an email alert.
What's next?
- Dashboard Guide — full overview of all features
- CLI Reference — all commands and options
- Webhook Jobs — detailed webhook configuration
- Gateway Setup — connect your OpenClaw gateway