curl --request POST \
--url 'https://api.flashcat.cloud/insight/incident/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"start_time": 1712000000,
"end_time": 1712604800,
"p": 1,
"limit": 20,
"severities": [
"Critical"
]
}
'import requests
url = "https://api.flashcat.cloud/insight/incident/list?app_key="
payload = {
"start_time": 1712000000,
"end_time": 1712604800,
"p": 1,
"limit": 20,
"severities": ["Critical"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
start_time: 1712000000,
end_time: 1712604800,
p: 1,
limit: 20,
severities: ['Critical']
})
};
fetch('https://api.flashcat.cloud/insight/incident/list?app_key=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.flashcat.cloud/insight/incident/list?app_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'start_time' => 1712000000,
'end_time' => 1712604800,
'p' => 1,
'limit' => 20,
'severities' => [
'Critical'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.flashcat.cloud/insight/incident/list?app_key="
payload := strings.NewReader("{\n \"start_time\": 1712000000,\n \"end_time\": 1712604800,\n \"p\": 1,\n \"limit\": 20,\n \"severities\": [\n \"Critical\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.flashcat.cloud/insight/incident/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"start_time\": 1712000000,\n \"end_time\": 1712604800,\n \"p\": 1,\n \"limit\": 20,\n \"severities\": [\n \"Critical\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/insight/incident/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"start_time\": 1712000000,\n \"end_time\": 1712604800,\n \"p\": 1,\n \"limit\": 20,\n \"severities\": [\n \"Critical\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"data": {
"total": 2363,
"has_next_page": true,
"search_after_ctx": "6a86b5d6f72de50ae1ce2ffb",
"items": [
{
"incident_id": "6a86b5d6f72de50ae1ce2ffb",
"title": "CPU usage above 90% on prod-web-01",
"description": "CPU usage stayed above the threshold for 5 minutes",
"team_id": 2477033058131,
"team_name": "SRE Team",
"channel_id": 3047621227131,
"channel_name": "Production Alerts",
"progress": "Closed",
"severity": "Critical",
"created_at": 1787213270,
"alert_cnt": 3,
"active_alert_cnt": 0,
"alert_event_cnt": 5,
"closed_by": "manually",
"creator_id": 2477273692131,
"creator_name": "alice",
"closer_id": 2477273692131,
"closer_name": "alice",
"seconds_to_ack": 14,
"seconds_to_close": 1830,
"engaged_seconds": 1816,
"hours": "work",
"responders": [
{
"person_id": 2477273692131,
"assigned_at": 1787213270,
"acknowledged_at": 1787213284,
"person_name": "alice",
"email": "alice@example.com"
}
],
"assigned_to": {
"escalate_rule_id": "66138789904a9027583dbc4e",
"layer_idx": 0,
"type": "assign",
"assigned_at": 1787213270,
"id": "b8tyUoRvCv4wsPndFRpmNL",
"escalate_rule_name": "On-call Policy"
},
"notifications": 2,
"interruptions": 1,
"assignments": 1,
"reassignments": 0,
"acknowledgements": 1,
"escalations": 0,
"timeout_escalations": 0,
"manual_escalations": 0
}
]
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
}
}查询洞察故障列表
返回用于分析看板的故障分页列表,包含每条故障的处理效能指标。
curl --request POST \
--url 'https://api.flashcat.cloud/insight/incident/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"start_time": 1712000000,
"end_time": 1712604800,
"p": 1,
"limit": 20,
"severities": [
"Critical"
]
}
'import requests
url = "https://api.flashcat.cloud/insight/incident/list?app_key="
payload = {
"start_time": 1712000000,
"end_time": 1712604800,
"p": 1,
"limit": 20,
"severities": ["Critical"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
start_time: 1712000000,
end_time: 1712604800,
p: 1,
limit: 20,
severities: ['Critical']
})
};
fetch('https://api.flashcat.cloud/insight/incident/list?app_key=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.flashcat.cloud/insight/incident/list?app_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'start_time' => 1712000000,
'end_time' => 1712604800,
'p' => 1,
'limit' => 20,
'severities' => [
'Critical'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.flashcat.cloud/insight/incident/list?app_key="
payload := strings.NewReader("{\n \"start_time\": 1712000000,\n \"end_time\": 1712604800,\n \"p\": 1,\n \"limit\": 20,\n \"severities\": [\n \"Critical\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.flashcat.cloud/insight/incident/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"start_time\": 1712000000,\n \"end_time\": 1712604800,\n \"p\": 1,\n \"limit\": 20,\n \"severities\": [\n \"Critical\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/insight/incident/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"start_time\": 1712000000,\n \"end_time\": 1712604800,\n \"p\": 1,\n \"limit\": 20,\n \"severities\": [\n \"Critical\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"data": {
"total": 2363,
"has_next_page": true,
"search_after_ctx": "6a86b5d6f72de50ae1ce2ffb",
"items": [
{
"incident_id": "6a86b5d6f72de50ae1ce2ffb",
"title": "CPU usage above 90% on prod-web-01",
"description": "CPU usage stayed above the threshold for 5 minutes",
"team_id": 2477033058131,
"team_name": "SRE Team",
"channel_id": 3047621227131,
"channel_name": "Production Alerts",
"progress": "Closed",
"severity": "Critical",
"created_at": 1787213270,
"alert_cnt": 3,
"active_alert_cnt": 0,
"alert_event_cnt": 5,
"closed_by": "manually",
"creator_id": 2477273692131,
"creator_name": "alice",
"closer_id": 2477273692131,
"closer_name": "alice",
"seconds_to_ack": 14,
"seconds_to_close": 1830,
"engaged_seconds": 1816,
"hours": "work",
"responders": [
{
"person_id": 2477273692131,
"assigned_at": 1787213270,
"acknowledged_at": 1787213284,
"person_name": "alice",
"email": "alice@example.com"
}
],
"assigned_to": {
"escalate_rule_id": "66138789904a9027583dbc4e",
"layer_idx": 0,
"type": "assign",
"assigned_at": 1787213270,
"id": "b8tyUoRvCv4wsPndFRpmNL",
"escalate_rule_name": "On-call Policy"
},
"notifications": 2,
"interruptions": 1,
"assignments": 1,
"reassignments": 0,
"acknowledgements": 1,
"escalations": 0,
"timeout_escalations": 0,
"manual_escalations": 0
}
]
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
}
}限制说明
| 项目 | 说明 |
|---|---|
| 速率限制 | 每个账户 1,000 次/分钟;50 次/秒 |
| 权限要求 | 分析看板查看(on-call) |
授权
在 Flashduty 控制台 账户 → APP Key 中签发的 app_key。调用任何公开 API 时都必须携带。它等同于所属账户的身份凭证,请妥善保管。
请求体
故障分页列表请求。在 InsightFilter 基础上增加分页字段。
起始时间,Unix 秒。必须大于 0。
结束时间,Unix 秒,必须大于 start_time。
按团队 ID 过滤,至多 100 项。
100按协作空间 ID 过滤,至多 100 项。
100按处理人员 ID 过滤,至多 100 项。
100按严重程度过滤,至多 3 项。
3Critical, Warning, Info, Ok 按故障 ID(MongoDB ObjectID)过滤,至多 100 项。
100^[0-9a-fA-F]{24}$对故障标题做子串匹配(SQL LIKE %query%)。
标签过滤(精确匹配)。
Show child attributes
Show child attributes
自定义字段过滤(精确匹配)。
故障列表的排序字段,目前仅支持 created_at(故障创建时间)。仅 /insight/incident/list 使用。
created_at 为 true 时升序,否则降序。仅 /insight/incident/list 使用。
是否仅返回调用者所属团队的数据。若调用者无任何团队,返回空集合。
用于划分 日/周/月 聚合桶的 IANA 时区名(如 Asia/Shanghai)。可选,默认 UTC;仅 /insight/incident/export 例外:缺省时依次回退到账户时区、Asia/Shanghai。
解决时长下界(秒,包含)。
x >= 0解决时长上界(秒,不包含)。两端同时设置时,必须大于 seconds_to_close_from。
x >= 0认领时长下界(秒,包含)。
x >= 0认领时长上界(秒,不包含)。两端同时设置时,必须大于 seconds_to_ack_from。
x >= 0导出 CSV 的列 key 列表,按给定顺序输出;未知或重复的 key 会被拒绝。各导出接口支持的 key 集合不同,见对应接口的描述。仅导出接口使用;最多 50 个。
50导出时是否将描述列中的 HTML 标签转换为纯文本。
是否包含曾被收敛的故障;默认不包含。
页码,从 1 开始。仅在未提供 search_after_ctx 时生效;p * limit 不能超过 10,000 条。
x >= 0每页条数,最大 100,默认 20。
0 <= x <= 100上一页返回的分页游标(该页最后一行的故障 ID),传入以获取下一页。
此页面对您有帮助吗?