Profile
Manage your display name and profile information.
AI Model
Choose which AI model powers SARA's responses.
Choose any LLM provider. SARA works with OpenAI, Claude, Gemini, Mistral, Groq, Ollama, or any OpenAI-compatible endpoint.
OmniSense Integration
Connect your SIRP OmniSense tenant to query live incidents, run agents, and execute response actions.
https://your-company.sirp.io)Email + password: Enables multi-tenant switching and JWT-based features. May conflict with browser sessions.
Both: Best of both worlds. API key for data, credentials for admin features.
| Query incidents, alerts, cases | API key or credentials |
| View assets and risk scores | API key or credentials |
| Run agents (enrichment, analysis, triage) | API key or credentials |
| Execute actions (block IP, contain host) | API key required |
| Multi-tenant switching (MSSP) | Credentials required |
| Threat advisory feed ingestion | API key or credentials |
What you can do with OmniSense connected
- "What's happening on my tenant?" -- live incident overview
- "Show me my P1 incidents" -- filtered incident lists
- "Analyze incident 263632" -- full case analysis with artifacts
- "Enrich incident 263632" -- run OmniSense enrichment agents
- "Show me my assets" -- asset risk overview by S3 score
More integrations coming soon
Privacy & Data
Your data, your control. SARA stores conversations to provide chat history — you can delete them anytime.
Delete All Conversations
Permanently delete all your saved conversations from both your browser and the server. This cannot be undone.
Delete Account
Remove your account and all associated data permanently — conversations, settings, API keys, integrations.
Billing & Plans
Upgrade your plan to unlock more messages, full enrichment, and OmniSense connectivity.
Current Subscription
Your Plan
Current usage and rate limits for your account.
Message Breakdown
Total messages sent across all sessions.
API Access
Programmatic access to SARA's intelligence. Use API keys to integrate with your SOAR, SIEM, or custom tools. View full API documentation →
Your API Keys
Quick Start
x-api-key header.
curl -X POST https://sara-open.sirp.io/api/v1/chat/completions \
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"sara","messages":[{"role":"user","content":"What is CVE-2024-3400?"}]}'
Response format (OpenAI)
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "sara",
"choices": [{"index":0,"message":{"role":"assistant","content":"..."},"finish_reason":"stop"}],
"usage": {"prompt_tokens":150,"completion_tokens":200,"total_tokens":350}
}
Python SDK example
from openai import OpenAI
client = OpenAI(base_url="https://sara-open.sirp.io/api/v1", api_key="YOUR_KEY")
r = client.chat.completions.create(model="sara", messages=[{"role":"user","content":"..."}])
print(r.choices[0].message.content)
curl -X POST https://sara-open.sirp.io/api/v1/chat \
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"message": "What is CVE-2024-3400?"}'
Response format
{
"response": "CVE-2024-3400 is a critical...",
"mode": "threat_intel",
"sources": ["Knowledge Base", "NVD"],
"iocs_detected": [],
"remaining_this_hour": 499,
"hourly_limit": 500
}
curl -X POST https://sara-open.sirp.io/api/v1/enrich \
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"iocs": [{"value": "8.8.8.8", "type": "ip"}]}'
curl -X POST https://sara-open.sirp.io/api/v1/analyze \
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"content": "EventID=4625 ...", "type": "alert"}'
Auth:
x-api-key: sara_... header on every requestMulti-turn: Use
{"messages": [...]} for conversation context
Connectors
Create custom webhook actions and connect external AI agents. Connectors start in dry-run mode for safety.
New Connector
Configure your connector's endpoint, triggers, and authentication.
SARA's Tools
These are the tools SARA can use during investigations. Tools are selected automatically based on your query, plan, and tenant connection.
Coming Soon: Create Custom Tools
SARA will be able to create new tools at runtime using OmniSense APIs. When SARA encounters a gap in her capabilities, she'll generate a tool on the fly, execute it, and offer to save it as a permanent custom tool.
SIRP Instance Connection
Connect SARA to your SIRP instance via SSH. SARA can run diagnostic commands, test integration connectivity, and troubleshoot issues directly on your SIRP server.
SIRP Instance SSH
Security Notice
Investigation Skills
Skills are reasoning presets that customize how SARA investigates. Select a skill in the chat header to activate it.
Bundled Skills
Your Custom Skills
Create Skill
SARA's Memory
SARA remembers your preferences, corrections, and investigation patterns to personalize responses. You can view, add, or delete memories.