# LiteSOC — Integrations

> Connect LiteSOC to your existing auth and automation stack in minutes.

- **Website:** https://litesoc.io/docs/integrations
- **All Integrations:** https://litesoc.io/docs/integrations

## Official Integrations

### Supabase

**Badge:** Official  
**Events tracked:** 6  
**Setup:** One-click OAuth connection from the LiteSOC dashboard

Auto-track 6 security events: signups, logins, password resets, MFA changes, user deletions.

**Features:**
- One-click OAuth setup — no code required
- Automatically tracks 6 Supabase Auth event types
- MFA enable/disable tracking included
- Works with Supabase Auth v2

**Setup:** Dashboard → Integrations → Supabase → Connect with OAuth

---

### Auth0

**Badge:** Official  
**Setup:** Auth0 Actions or Log Streams

Monitor authentication events from Auth0 with Actions or Log Streams. Full IP capture for Behavioral AI detection.

**Features:**
- Supports both Auth0 Actions (post-login hook) and Log Streams
- Full end-user IP captured for Impossible Travel and Geo-Anomaly AI
- Covers login, logout, MFA events, and more
- Works with Auth0 Universal Login and custom domains

**Setup:** Dashboard → Integrations → Auth0 → Install Action or configure Log Stream

---

### n8n Community Node

**Badge:** Community  
**Package:** `n8n-nodes-litesoc`

Build powerful security automation workflows with our native n8n community node. No code required.

**Features:**
- **LiteSOC Trigger** — react to security events and behavioral alerts in real-time
- **LiteSOC Action** — query events and update alert status from any workflow
- Access to 100+ n8n app connectors (Slack, Jira, PagerDuty, email, etc.)
- Visual no-code workflow builder

**Install:** In n8n, go to Settings → Community Nodes → Install → enter `n8n-nodes-litesoc`  
**Docs:** https://litesoc.io/docs/n8n

## Coming Soon

| Provider | Type | Notes |
|---|---|---|
| Clerk | Official | Full event coverage for Clerk Auth |
| Firebase | Official | Firebase Authentication integration |
| WorkOS | Official | Enterprise SSO and directory sync |
| Stytch | Official | Passwordless authentication events |
| Okta | Official | Enterprise identity platform |

## Direct API Integration

For any auth provider not listed above, use the REST API directly:

```bash
curl -X POST https://api.litesoc.io/collect \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "event": "auth.login_success",
    "actor": { "id": "user_123", "email": "user@example.com" },
    "user_ip": "203.0.113.50"
  }'
```

SDKs available for **Node.js** (`npm install litesoc`), **Python** (`pip install litesoc`), and **PHP** (`composer require litesoc/litesoc-php`).
