Alerts
Get notified when spend, violations, or billing anomalies cross your thresholds.
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
- Go to Alerts → Email.
- Add recipient addresses.
- Set the severity threshold (CRITICAL only, or all).
Configure a webhook
- Go to Alerts → Webhook.
- Enter your endpoint URL.
- Optionally add a secret for HMAC verification.
- Click Test to send a sample payload.
Use the webhook to forward alerts to Slack with a simple relay function — no extra infrastructure needed.