API Reference
Programmatic access to Secure Raven's compliance monitoring platform. Build integrations, automate workflows, and extend functionality with our REST API.
Built for developers
The Secure Raven API is a RESTful interface that gives you full programmatic access to every feature of the platform. Query findings, trigger missions, manage controls, and automate your entire compliance workflow.
Authenticate using API keys generated from your dashboard. All requests are made over HTTPS and responses are returned in JSON format.
https://api.secureraven.com/v1curl -X GET \ "https://api.secureraven.com/v1/findings" \ -H "Authorization: Bearer sr_live_..." \ -H "Content-Type: application/json"
{ "findings": [ { "id": "fnd_7x9k2m", "severity": "high", "status": "open" } ], "total": 42 }
Explore the endpoints
Full CRUD operations across all platform resources with consistent, predictable patterns.
Systems
Manage connected systems and data sources. List, create, update, and remove infrastructure targets.
GET /v1/systemsFindings
Query and manage security findings. Filter by severity, status, framework, and time range.
GET /v1/findingsControls
Access compliance controls and their current assessment status across all mapped frameworks.
GET /v1/controlsMissions
Create, schedule, and monitor agent missions. Retrieve mission results and execution history.
POST /v1/missionsEvidence
Collect, upload, and retrieve audit evidence. Attach evidence to controls for compliance reports.
GET /v1/evidenceEvents
Stream real-time security events and audit logs. Subscribe to webhooks for automated workflows.
GET /v1/eventsSDKs & libraries
Official client libraries to accelerate your integration with idiomatic code.
TypeScript / Node.js
Full-featured SDK with TypeScript types, async iterators, and built-in retry logic.
$ npm install @secureraven/sdkPython
Pythonic SDK with async support, Pydantic models, and comprehensive error handling.
$ pip install secureravenGo
Coming SoonIdiomatic Go client with context support, connection pooling, and generated types.
Coming Q2 2026Get your API key and start building
Create a free account to generate API keys and access the full API documentation.