Security Intel,
Delivered as API
Stop copying IOCs from a browser tab into your SIEM. ClawGuru's REST API puts curated threat intelligence, automated indicator checks, and battle-tested remediation runbooks directly inside your security stack — where decisions actually happen.
Your SIEM doesn't have a browser tab.
- ✕Analyst manually copies IOC from threat report
- ✕Pastes it into ClawGuru web UI
- ✕Reads assessment, then manually creates SIEM rule
- ✕Zero audit trail from intel source to detection rule
- ✕Doesn't scale beyond 10 indicators/day
- ✓SOAR ingests IOC, auto-calls /v1/check-indicator
- ✓Risk score + tags returned in <200ms
- ✓SIEM rule created automatically from API response
- ✓Full audit trail: indicator → intel source → detection rule
- ✓Scales to 100,000+ indicators/day with metered billing
Enterprise security teams run at machine speed. When a phishing campaign hits at 2 AM, you don't want a human opening a browser — you want your SOAR to automatically score every new IOC, pull the relevant runbook, and trigger remediation within seconds. That's what the ClawGuru API is built for.
Three endpoints. Unlimited power.
POST /v1/check-indicator — assess any IP, domain, hash, or URL against ClawGuru threat intel in real time. Returns risk score, tags, and SIEM-ready action recommendations.
GET /v1/intel-feed/latest — subscribe to curated, analyst-reviewed threat intelligence. Filter by severity and category. Pipe directly into Splunk, Elastic SIEM, or Microsoft Sentinel.
GET /v1/runbook/{'{id}'} — programmatically fetch step-by-step remediation playbooks. Your SOAR can attach the right runbook to every incident ticket automatically.
Pay only for what you use. Each API call reports one unit to Stripe Metered Billing. No seat licenses. No upfront commitments. Scale from 100 to 10 million calls without renegotiating a contract.
API key authentication with per-key rate limiting and usage tracking. Keys are scoped to Stripe subscription items for isolated billing per team or product.
Full OpenAPI/Swagger-style reference. Generate client SDKs in any language with a single command. Integrate into your existing API gateway or service mesh in under an hour.
From zero to integrated in < 1 hour.
Add ClawGuru enrichment to every Splunk, Elastic, or Sentinel alert containing an IP or domain. One lookup. Full context.
# Splunk SOAR Playbook (Python)
import requests
def enrich_indicator(indicator, indicator_type):
resp = requests.post(
"https://clawguru.org/api/v1/check-indicator",
headers={"X-Api-Key": os.environ["CLAWGURU_API_KEY"]},
json={"indicator": indicator, "type": indicator_type},
timeout=5,
)
data = resp.json()
return {
"risk": data["risk"],
"score": data["score"],
"tags": data["tags"],
"actions": data["actions"],
}When your SOAR creates an incident ticket, automatically fetch and attach the relevant ClawGuru runbook as a remediation guide.
// SOAR Automation (TypeScript / Tines)
const runbook = await fetch(
`https://clawguru.org/api/v1/runbook/${incidentType}`,
{ headers: { "X-Api-Key": process.env.CLAWGURU_API_KEY } }
).then(r => r.json())
await jira.createComment(ticketId, `
## Remediation Runbook: ${runbook.title}
${runbook.steps.map((s, i) => `${i+1}. ${s}`).join("\n")}
`)Integrate ClawGuru into your GitHub Actions pipeline to check domain/hash indicators from npm audit or trivy scans before deploying.
# GitHub Actions – Indicator Check Step
- name: Check suspicious domain
run: |
RESULT=$(curl -s -X POST \
-H "X-Api-Key: ${{ secrets.CLAWGURU_API_KEY }}" \
-H "Content-Type: application/json" \
-d '{"indicator":"'$DOMAIN'","type":"domain"}' \
https://clawguru.org/api/v1/check-indicator)
RISK=$(echo $RESULT | jq -r '.risk')
if [ "$RISK" = "high" ]; then
echo "High-risk indicator detected. Blocking deploy."
exit 1
fiUsage-based. No surprises.
Powered by Stripe Metered Billing. Each API call is one unit. Bills are generated at the end of each monthly period.
- ✓All 3 API endpoints
- ✓60 req/min rate limit
- ✓Standard support
- ✓OpenAPI docs
- ✓Usage dashboard
- ✓All 3 API endpoints
- ✓300 req/min rate limit
- ✓Priority support
- ✓Webhook usage alerts
- ✓Volume discount above 100k
- ✓All 3 API endpoints
- ✓Unlimited rate limit
- ✓Dedicated SLA
- ✓Custom Intel Feed filters
- ✓On-premises option
Get your Enterprise API key today.
Start with the API Reference and get your first 500 calls on us.
API Reference →