Try the Intruex API for Free

Send 5 real alerts a month to our intake API and watch the Intruex AI agent swarm triage, enrich, and disposition each one. No credit card. No sales call.

Request a Trial Key

What's Included

5 Alert Analyses per Month

Submit up to 5 alerts per calendar month. Your quota resets on the 1st of every month (UTC).

Full AI Agent Pipeline

Every alert runs through the complete swarm: triage, enrichment, disposition, and confidence scoring.

Retrieve Your Results

Pull agent verdicts and enrichment data any time via GET /api/v1/alerts with your trial key.

Key Delivered by Email

We review every request and email your trial API key within 1 business day.

Developer Quickstart

Authenticate with the X-API-Key header and POST alerts to the intake endpoint. That's it.

Endpoint
POST https://app.intruex.com/api/v1/alerts/intake
Submit an alert
curl -X POST https://app.intruex.com/api/v1/alerts/intake \ -H "Content-Type: application/json" \ -H "X-API-Key: intruex_sk_YOUR_TRIAL_KEY" \ -d '{ "_raw": "User admin@example.com failed to login from IP 192.168.1.100 after 5 attempts", "event_type": "brute_force_attempt", "severity": "high", "source_ip": "192.168.1.100", "username": "admin@example.com", "failed_attempts": 5, "protocol": "SSH", "port": 22 }'
Response — 202 Accepted
{ "status": "accepted", "message": "Alert accepted for processing", "events_received": 1 }
Retrieve your results
curl https://app.intruex.com/api/v1/alerts \ -H "X-API-Key: intruex_sk_YOUR_TRIAL_KEY"

Good to Know

  • Best results: put the original log line — or your entire alert payload — in _raw (string or object). The AI agents analyze that text directly. No raw log? Send your structured alert JSON as-is and the pipeline normalizes it from the fields.
  • You can submit a JSON array to batch alerts. A batch of N counts as N of your 5 monthly analyses.
  • Once you hit your monthly limit, the API returns 429 with the date your quota resets (the 1st of the next month, UTC).
  • Trial keys are limited to the alert endpoints: submitting alerts and retrieving or managing your own alerts.

Request Your Trial Key