Skip to main content
GET
/
alerts
/
{alert_id}
curl -X GET "https://api.warrn.io/alerts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/" \
  -H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "High error rate on checkout-service",
  "description": "Error rate exceeded 5% threshold for the past 3 minutes.",
  "severity": "high",
  "status": "open",
  "source": "integration",
  "service_id": "d4e5f6a7-b8c9-0123-4567-89abcdef0123",
  "service_name": "checkout-service",
  "team_id": "f1e2d3c4-b5a6-7890-1234-567890abcdef",
  "team_name": "Platform",
  "tags": ["checkout", "production"],
  "metadata": {
    "error_rate": "7.2%",
    "threshold": "5%"
  },
  "created_at": "2026-05-05T14:30:00.000000+05:30",
  "updated_at": "2026-05-05T14:30:00.000000+05:30",
  "acknowledged_at": null,
  "resolved_at": null,
  "acknowledged_by_id": null,
  "acknowledged_by_name": null,
  "resolved_by_id": null,
  "resolved_by_name": null,
  "alert_alias": null,
  "occurrence_count": 1,
  "first_occurred_at": "2026-05-05T14:30:00.000000+05:30",
  "last_occurred_at": "2026-05-05T14:30:00.000000+05:30",
  "linked_incident_id": null,
  "linked_incident_title": null,
  "war_room_url": null,
  "investigation_status": null
}

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.

Retrieve the full details of a single alert.

Authentication

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

Path Parameters

alert_id
uuid
required
The alert ID.

Response

Returns the full alert object including all timestamps, related entities, and metadata.

Example

curl -X GET "https://api.warrn.io/alerts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/" \
  -H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "High error rate on checkout-service",
  "description": "Error rate exceeded 5% threshold for the past 3 minutes.",
  "severity": "high",
  "status": "open",
  "source": "integration",
  "service_id": "d4e5f6a7-b8c9-0123-4567-89abcdef0123",
  "service_name": "checkout-service",
  "team_id": "f1e2d3c4-b5a6-7890-1234-567890abcdef",
  "team_name": "Platform",
  "tags": ["checkout", "production"],
  "metadata": {
    "error_rate": "7.2%",
    "threshold": "5%"
  },
  "created_at": "2026-05-05T14:30:00.000000+05:30",
  "updated_at": "2026-05-05T14:30:00.000000+05:30",
  "acknowledged_at": null,
  "resolved_at": null,
  "acknowledged_by_id": null,
  "acknowledged_by_name": null,
  "resolved_by_id": null,
  "resolved_by_name": null,
  "alert_alias": null,
  "occurrence_count": 1,
  "first_occurred_at": "2026-05-05T14:30:00.000000+05:30",
  "last_occurred_at": "2026-05-05T14:30:00.000000+05:30",
  "linked_incident_id": null,
  "linked_incident_title": null,
  "war_room_url": null,
  "investigation_status": null
}