Skip to main content
GET
/
alerts
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"
  }
]

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.

List alerts for your organization. Supports filtering by status, severity, team, and service.

Authentication

Authorization
string
required
Bearer token. Format: Bearer warrn_xxx. Requires read permission.

Query Parameters

status
string
Filter by status. One of: open, acknowledged, resolved, not_resolved. The not_resolved filter returns both open and acknowledged alerts.
severity
string
Filter by severity. One of: low, medium, high, critical.
team_id
uuid
Filter by team.
service_id
uuid
Filter by service.
resolved_by
uuid
Filter by the user who resolved the alert.
acknowledged_by
uuid
Filter by the user who acknowledged the alert.

Response

Returns an array of alert objects.

Example

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"
  }
]