Developer Hub

Documentation & API Specs

Comprehensive guides, technical requirements, and API references to seamlessly integrate RovySec's offensive AI into your security stack.

Technical Guidelines & Deployment

Our autonomous agents are delivered as lightweight containerized binaries. They require minimal configuration and map directly to your existing CI/CD pipelines, ensuring rapid deployment across hybrid environments.

Environment

Docker Engine version 20.10+ or Kubernetes cluster 1.22+ required for agent orchestration.

Network Rules

Outbound TLS (Port 443) access to api.rovysec.com for telemetry and command sync.

Identity & Access

Dedicated service account configured with least-privilege RBAC policies for audit mapping.

API Integration (v1.0)

Interact programmatically with our core engine. Automate penetration tests, trigger custom red-team loops, and pull structured NIS2 compliance metrics directly into your SIEM or SOAR platforms.

POST /api/v1/scans/trigger
curl -X POST https://api.rovysec.com/v1/scans/trigger \
  -H "Authorization: Bearer rv_live_7x9A..." \
  -H "Content-Type: application/json" \
  -d '{
    "target_scope": "10.0.50.0/24",
    "scan_type": "autonomous_red_team",
    "nis2_mapping": true
}'

// Response
{
  "status": "success",
  "scan_id": "scan_902jf83",
  "message": "AI agents deployed successfully.",
  "eta_minutes": 8
}