Operations
Webhooks
Receive real-time HTTP callbacks for gateway events — quota thresholds, policy violations, and usage milestones.
construction
Coming soon
Webhooks are in development and will be available in a future release. This page documents the planned interface.
Planned event types
| Event | Trigger |
|---|---|
| usage.quota_warning | Project reaches 80% of monthly token quota |
| usage.quota_exceeded | Project exhausts monthly token quota |
| policy.rate_limit_hit | Request rejected by rate limiter |
| auth.key_expired | API key reaches expiry date |
| audit.policy_violation | Request blocked by content policy |
Planned payload format
json
{
"event": "usage.quota_warning",
"timestamp": 1745000000000,
"account_id": "acc_...",
"project_id": "proj_...",
"data": {
"quota_used": 80000,
"quota_limit": 100000,
"percent": 80
}
} Stay informed
Contact us if webhook support is blocking your use case — it helps us prioritize the roadmap.