Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List, search, and inspect audit events
agent_id
action_type
since
until
label.{key}
label.env=prod
limit
offset
# List recent events curl http://localhost:7600/v1/events?limit=20 # Filter by agent curl http://localhost:7600/v1/events?agent_id=my-agent # Filter by label curl "http://localhost:7600/v1/events?label.env=prod&limit=10"
[ { "id": "550e8400-e29b-41d4-a716-446655440000", "agent_id": "my-agent", "action_type": "TOOL_CALL", "action_name": "search_database", "action_status": "success", "sequence": 42, "hash": "sha256...", "timestamp": "2026-02-17T10:30:00Z" } ]
curl http://localhost:7600/v1/events/550e8400-e29b-41d4-a716-446655440000
404
q
curl "http://localhost:7600/v1/search?q=search_database&limit=10"
curl http://localhost:7600/v1/agents
[ { "agent_id": "my-agent", "event_count": 150, "last_activity": "2026-02-17T10:30:00Z", "chain_valid": true } ]
curl http://localhost:7600/v1/stats
{ "total_events": 1500, "events_last_24h": 42, "active_agents": 5, "chain_health": 1.0 }