Documentation for AuditLedge — production-grade audit logs for SaaS
Get your first audit event into Auditledge in under 5 minutes.
Sign up at auditledge.com/signup. No credit card required — the free tier includes 10,000 events/month.
al_ and is shown only oncecurl -X POST https://api.auditledge.com/v1/events \
-H "Authorization: Bearer al_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"actor": { "id": "user_123", "name": "Alice" },
"action": "invoice.deleted",
"resource": { "type": "invoice", "id": "inv_456" },
"organization_id": "org_789"
}'
A 201 response means the event is stored:
{
"success": true,
"event": {
"id": "a1b2c3d4-...",
"timestamp": "2026-05-13T10:23:00.000Z",
"actor_id": "user_123",
"actor_name": "Alice",
"action": "invoice.deleted",
"resource_type": "invoice",
"resource_id": "inv_456",
"organization_id": "org_789"
}
}
Open Dashboard → Events, connect your API key, and the event appears immediately. You can filter by actor, action, or date range, and export to CSV or JSON.