Documentation

API Documentation &
Integration Guide

Everything you need to integrate LiteSOC into your application. From quick start guides to complete API references.

Simple Integration

Start tracking events in minutes

Our REST API is designed to be simple and intuitive. Send your first security event with a single API call.

  • RESTful API with JSON payloads
  • TypeScript SDK with full type safety
  • Automatic Geo-IP enrichment
View Full Documentation
example.ts
// 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
    }
  })
});

Ready to get started?

Create your free account and start monitoring security events in under 5 minutes.