Skip to main content
POST
/
incident
/
alert
/
list
List alerts of incident
curl --request POST \
  --url 'https://api.flashcat.cloud/incident/alert/list?app_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "incident_id": "69da451ef77b1b51f40e83ee",
  "is_active": true,
  "limit": 100,
  "p": 1
}
'
{
  "request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
  "data": {
    "total": 1,
    "items": [
      {
        "alert_id": "69da451df77b1b51f40e83de",
        "integration_id": 2490562293131,
        "data_source_id": 2490562293131,
        "channel_id": 2551105804131,
        "account_id": 2451002751131,
        "description": "",
        "title": "CPU usage high - web-server-01",
        "title_rule": "",
        "alert_key": "100128:prom-10.99.1.107:A:1579244238440766834:anydata",
        "alert_severity": "Critical",
        "alert_status": "Critical",
        "start_time": 1775912219,
        "last_time": 1775969819,
        "end_time": 0,
        "labels": {
          "check": "cpu_usage_high",
          "resource": "web-server-01"
        },
        "ever_muted": false,
        "created_at": 1775912221,
        "updated_at": 1775969821,
        "integration_name": "FlashMonit",
        "integration_type": "monit.alert",
        "integration_ref_id": "a_2451002751131",
        "channel_name": "Ops Channel",
        "channel_status": "enabled",
        "responder_name": "",
        "responder_email": "",
        "incident": {
          "incident_id": "69da451ef77b1b51f40e83ee",
          "title": "CPU usage high - web-server-01",
          "progress": "Triggered"
        },
        "event_cnt": 17,
        "images": null,
        "data_source_name": "FlashMonit",
        "data_source_type": "monit.alert",
        "data_source_ref_id": "a_2451002751131"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.flashcat.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Restrictions

AspectValue
Rate limits1,000 requests/minute; 50 requests/second per account
PermissionsIncidents Read (on-call)

Authorizations

app_key
string
query
required

App key issued from the Flashduty console under Account → APP Keys. Required on every public API call. Keep it secret — it grants the same access as the owning account.

Body

application/json

Filters for alerts belonging to an incident.

incident_id
string
required

Incident ID (MongoDB ObjectID).

Pattern: ^[0-9a-fA-F]{24}$
include_events
boolean

When true, include raw alert events in each alert item.

is_active
boolean

When true return only active alerts (Critical/Warning/Info); when false return only recovered alerts (Ok). Omit to include all.

limit
integer<int64>
default:1000

Page size, at most 1000.

Required range: 0 <= x <= 1000
p
integer<int64>
default:1

Page number starting at 1.

Required range: x >= 0

Response

Success

Success response envelope. On every 2xx response, request_id identifies the call (also mirrored in the Flashcat-Request-Id header) and data holds the endpoint-specific payload. Failure responses use a different shape — see ErrorResponse.

request_id
string
required

Unique ID for this request. Mirrored in the Flashcat-Request-Id response header. Include it when reporting issues.

Example:

"01HK8XQE3Z7JM2NTFQ5YJ8P9R4"

data
object
required

Paginated list of alerts merged into an incident.