ClawTickClawTickDocs

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:

  1. Go to Dashboard → Jobs
  2. Click Create Job
  3. Select Webhook integration
  4. Enter your endpoint URL, method, and schedule
  5. Click Create

Option B: OpenClaw Job (AI agents)

Send messages to your OpenClaw AI agents on a schedule:

  1. First, configure your gateway
  2. Go to Dashboard → Jobs
  3. Click Create Job
  4. Select OpenClaw integration
  5. Write your agent message and pick a schedule
  6. Click Create

3. (Optional) Install the CLI

npm install -g clawtick

Generate an API key in Dashboard → API Keys, then authenticate:

clawtick login --key cp_your_api_key

Create 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?