Alert Thresholds#

Get notified when your traffic metrics cross a threshold. Alerts are checked daily during the midnight rollup.

Create an Alert#

curl -X POST https://antics-api.turtletech.us/api/alerts \
  -H "Authorization: Bearer $ANTICS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "site_id": "YOUR-SITE-ID",
    "metric": "visitors",
    "operator": "lt",
    "threshold": 10,
    "email": "you@example.com"
  }'

Metrics#

  • visitors – daily unique visitors

  • pageviews – daily total pageviews

  • bounce_rate – daily bounce rate percentage

  • visitors_change_pct – visitor percentage change from the preceding period

  • pageviews_change_pct – pageview percentage change from the preceding period

  • bounce_rate_change_pct – bounce-rate percentage change from the preceding period

Operators#

  • lt – less than (alert when metric drops below threshold)

  • gt – greater than (alert when metric exceeds threshold)

Notifications are delivered to the email address configured on the alert.

Dashboard#

Manage alerts from the Alerts page in the dashboard. Create rules, view trigger history, and delete alerts.