Base URL
All API requests should be made to:https://api.omium.ai/api/v1
Authentication
All API requests require authentication using an API key. Include it in theX-API-Key header or as a Bearer token.
Endpoints
List Failures
GET /failures
List all detected failures for the authenticated tenant.
Query Parameters:
limit: Maximum number of failures to return (default: 50).offset: Number of failures to skip (for pagination).status: Filter by failure status (open|resolved|ignored).
Get Failure Details
GET /failures/{failure_id}
Retrieve details of a specific failure.
Path Parameters:
failure_id: The ID of the failure.
Get Failure Statistics
GET /failures/stats
Retrieve aggregated statistics about failures.
Response:
Resolve Failure
POST /failures/{failure_id}/resolve
Mark a specific failure as resolved.
Path Parameters:
failure_id: The ID of the failure to resolve.