Give it a try
These commands demonstrate the simplicity of AuditAPI. Using the read-only API key provided, you can copy & paste them into your terminal to return live production data. View the complete API documentation here. Today, we offer a Ruby client library. More languages are coming soon!
# Retrieve a list of events
curl https://api.auditapi.com/v1/events \
-H "Authorization: Bearer read-only-demo-key"
# Search for events containing "user.updated"
curl https://api.auditapi.com/v1/events/search?query=user.updated \
-H "Authorization: Bearer read-only-demo-key"