Dashboard Get started

TokenID sends alerts when something needs your attention. Configure them at token.audit.id/app/alerts.

Alert types

Critical spend alert

Triggered when a violation with CRITICAL severity is detected. Sent immediately via email to your configured recipients.

Daily digest

A summary of all LOW and MEDIUM tier events from the previous 24 hours. Sent once per day.

Webhook

POST a JSON payload to your endpoint whenever an alert fires. Use this to pipe events into Slack, PagerDuty, or your own systems.

{
  "alert_type": "critical",
  "violation_type": "pricing_mismatch",
  "severity": "CRITICAL",
  "amount_usd": 142.50,
  "session_id": "my-session",
  "timestamp": "2026-05-04T08:00:00Z"
}

Configure email alerts

  1. Go to Alerts → Email.
  2. Add recipient addresses.
  3. Set the severity threshold (CRITICAL only, or all).

Configure a webhook

  1. Go to Alerts → Webhook.
  2. Enter your endpoint URL.
  3. Optionally add a secret for HMAC verification.
  4. Click Test to send a sample payload.

Use the webhook to forward alerts to Slack with a simple relay function — no extra infrastructure needed.