Everything you need to integrate LiteSOC into your application. From quick start guides to complete API references.
Our REST API is designed to be simple and intuitive. Send your first security event with a single API call.
// Track a security event
const response = await fetch('https://litesoc.io/v1/events', {
method: 'POST',
headers: {
'Authorization': 'Bearer soc_live_...',
'Content-Type': 'application/json'
},
body: JSON.stringify({
event: 'login',
userId: 'user_123',
metadata: {
method: 'password',
success: true,
ip: request.ip
}
})
});Create your free account and start monitoring security events in under 5 minutes.