Everything you need to integrate LiteSOC into your application. From quick start guides to complete API references.
The fastest way to integrate LiteSOC. Our official SDKs handle batching, retries, and provide type-safe convenience methods.
npm install litesocpip install litesoccomposer require litesoc/litesoc-phpUsing Go, Ruby, Rust, or another language? See raw API examples →
Our REST API is designed to be simple and intuitive. Send your first security event with a single API call.
// Using the official SDK (recommended)
import { LiteSOC } from 'litesoc';
const litesoc = new LiteSOC('YOUR_API_KEY');
// Track a security event
litesoc.track('auth.login_success', {
actorId: 'user_123',
actorEmail: 'user@example.com',
userIp: request.ip,
metadata: { method: 'password' }
});
// Use convenience methods
litesoc.trackLoginFailed('user_123', { userIp: request.ip });Create your free account and start monitoring security events in under 5 minutes.