One curl creates a monitor that probes any HTTPS URL on a schedule and runs an immediate first check. Grab a key from Settings → API keys, swap in your URL, and paste this into your terminal.
WatchTower probes your endpoints and tells you the moment one of them stops behaving — latency, status, body content.
What it does
HTTP / keyword / SSL-expiry checks
Latency budgets, body assertions, SSL expiry alarms
Alert through email and webhook
What it does not do
↛ Not usReceive heartbeats from inside
WatchTower is outside-in. PingWatch is inside-out.
→ try PingWatch
↛ Not usShow the result publicly
WatchTower is alerting. FlipSign is broadcasting.
→ try FlipSign
Authentication
Every API request carries a Bearer token. Create a key in Settings → API keys — the full key (it starts with wt_) is shown once at creation, so store it somewhere safe. Keys are hashed on our side; only the prefix stays visible in the dashboard for identification. A missing, placeholder, invalid, or revoked key returns 401 with a descriptive message.
Header
Authorization:Bearerwt_a1b2c3d4e5f6...
Create a monitor
A monitor is a recurring check against one URL. The only required fields are namerequired and urlrequired; everything else has a sensible default — checkType defaults to http, method to GET, expectedStatus to 200, and intervalSeconds to 300.
Until you verify a domain, WatchTower caps it at one monitor and a minimum check interval of one hour. Verifying the apex (e.g. example.com) lifts both caps for every subdomain. Register the domain with POST /api/v1/domains — the response returns a pathToken and a verificationToken you satisfy via a .well-known file or a DNS TXT record.
synced
# Serve the path token at this URL on your domain:# https://www.example.com/.well-known/watchtower/<pathToken>.txt# whose body is exactly the verificationToken.printf'%s'"<verificationToken>"\>/var/www/.well-known/watchtower/<pathToken>.txt
Wire alert channels
When a monitor goes down, WatchTower opens an incident and notifies your alert channels. The channels available depend on your tier: Free is email-only; Starter adds Slack and webhook; Pro and Business add Discord and PagerDuty. Configure channels on the Alerts page — Pro+ can also set per-channel escalation delays so a channel only fires once an incident has been open for N minutes.
Multi-location & SSL (Pro+)
Two Pro-tier upgrades sharpen detection:
SSL-expiry checks. Set checkType: "ssl" on a monitor and WatchTower performs a TLS handshake against the URL, alerting you as the certificate's expiry approaches. SSL monitoring is gated to Pro and Business — a Free/Starter request with checkType: "ssl" returns 403.
Multi-location probing. Pro+ monitors can run from both a US region (iad1) and an EU region (fra1). The check is a strict quorum — if any region reports the target down, the monitor is marked down — which cuts false positives from a single bad network path.