curl --request GET \
--url https://api.dualship.run/monitoring/incidents \
--header 'Authorization: Bearer <token>'{
"incidents": [
{
"description": "Increased latency on flow endpoints",
"id": "inc_123",
"resolved_at": "2024-01-15T10:30:00Z",
"severity": "minor",
"started_at": "2024-01-15T10:00:00Z",
"status": "resolved",
"title": "API Latency Spike"
}
]
}Get list of active and past incidents
curl --request GET \
--url https://api.dualship.run/monitoring/incidents \
--header 'Authorization: Bearer <token>'{
"incidents": [
{
"description": "Increased latency on flow endpoints",
"id": "inc_123",
"resolved_at": "2024-01-15T10:30:00Z",
"severity": "minor",
"started_at": "2024-01-15T10:00:00Z",
"status": "resolved",
"title": "API Latency Spike"
}
]
}Was this page helpful?