cURL
curl -X GET "https://app.cotool.ai/api/orca/alert-groups" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
{ "groups": [ { "groupId": "<string>", "title": "<string>", "description": "<string>", "executionPlan": [ "<string>" ], "severity": "low", "easeOfFix": "s", "alertIds": [ "<string>" ], "alertCount": 123, "codeRepoUrl": "<string>", "serviceRequiringFix": "<string>", "inventoryTypes": [ "<string>" ], "relevanceScore": 123 } ] }
Retrieve a list of grouped Orca Security alerts sorted by relevance score (severity weight × alert count)
API Key authentication for programmatic access. Include your API key in the Authorization header as: Bearer your_api_key_here
Bearer your_api_key_here
Successful response
Array of alert groups sorted by relevance score
Show child attributes
Was this page helpful?