curl -X GET "https://api.warrn.io/alerts/?status=open&severity=critical" \
-H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
[
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Database connection pool exhausted",
"severity": "critical",
"status": "open",
"source": "integration",
"service_id": "d4e5f6a7-b8c9-0123-4567-89abcdef0123",
"service_name": "user-service",
"team_id": "f1e2d3c4-b5a6-7890-1234-567890abcdef",
"team_name": "Platform",
"tags": ["database", "connection-pool"],
"created_at": "2026-05-05T14:30:00.000000+05:30",
"updated_at": "2026-05-05T14:30:00.000000+05:30"
}
]
Retrieve a list of alerts with optional filters.
curl -X GET "https://api.warrn.io/alerts/?status=open&severity=critical" \
-H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
[
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Database connection pool exhausted",
"severity": "critical",
"status": "open",
"source": "integration",
"service_id": "d4e5f6a7-b8c9-0123-4567-89abcdef0123",
"service_name": "user-service",
"team_id": "f1e2d3c4-b5a6-7890-1234-567890abcdef",
"team_name": "Platform",
"tags": ["database", "connection-pool"],
"created_at": "2026-05-05T14:30:00.000000+05:30",
"updated_at": "2026-05-05T14:30:00.000000+05:30"
}
]
List alerts for your organization. Supports filtering by status, severity, team, and service.Documentation Index
Fetch the complete documentation index at: https://docs.warrn.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer warrn_xxx. Requires read permission.open, acknowledged, resolved, not_resolved. The not_resolved filter returns both open and acknowledged alerts.low, medium, high, critical.curl -X GET "https://api.warrn.io/alerts/?status=open&severity=critical" \
-H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
[
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Database connection pool exhausted",
"severity": "critical",
"status": "open",
"source": "integration",
"service_id": "d4e5f6a7-b8c9-0123-4567-89abcdef0123",
"service_name": "user-service",
"team_id": "f1e2d3c4-b5a6-7890-1234-567890abcdef",
"team_name": "Platform",
"tags": ["database", "connection-pool"],
"created_at": "2026-05-05T14:30:00.000000+05:30",
"updated_at": "2026-05-05T14:30:00.000000+05:30"
}
]