Turn security alerts into automated actions. Connect LiteSOC to 400+ apps and build powerful workflows without writing code.
Get started in minutes
# No installation needed!
# Search for "LiteSOC" in the n8n nodes library
# The native node is pre-installed on n8n CloudSimply search for "LiteSOC" in the nodes library when building your workflow.
npm install n8n-nodes-litesocRun this in your n8n installation directory, then restart n8n.
{
"apiKey": "lsoc_your_api_key_here"
}What you can do with the LiteSOC node
| Action | Description | Plan |
|---|---|---|
| Track Event | Send security events to LiteSOC for analysis | All Plans |
| Get Event | Retrieve a specific event by ID (retention & redaction apply) | All Plans |
| Get Many Events | Fetch all events within your retention window (100/req max) | All Plans |
Get Event by ID:
Get Many Events:
curl -X GET "https://api.litesoc.io/v1/events?limit=50&event_name=auth.login_failed" \
-H "x-api-key: lsoc_your_api_key_here"Real-world automation scenarios
Get instant alerts on Telegram when critical security events occur. Triggers on new alerts, filters by severity, and sends formatted messages.
Automatically block IPs in Cloudflare WAF when brute force attacks are detected, then notify your team via Slack.
Every Monday at 9 AM, fetch last week's events, aggregate by type, and sync to Google Sheets with an email summary.
Custom headers in every API response
| Header | Description | Example |
|---|---|---|
| X-LiteSOC-Plan | Your current subscription tier | pro |
| X-LiteSOC-Retention | Data retention window for your plan | 30 days |
| X-RateLimit-Limit | Maximum requests per minute | 100 |
| Retry-After | Seconds to wait if rate limited (429) | 60 |
Management API limits by plan
| Plan | Rate Limit | Data Retention | Events Access | Alerts Access |
|---|---|---|---|---|
Free | 60 req/min | 7 days | 100/req (redacted) | Blocked |
Pro | 100 req/min | 30 days | 100/req (full) | Full Access |
Enterprise | 500 req/min | 90 days | 100/req (full) | Full Access |
Common errors and solutions