查看 RUM 资源信息
curl --request POST \
--url 'https://api.flashcat.cloud/rum/resource/info?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"no_cache": false
}
'import requests
url = "https://api.flashcat.cloud/rum/resource/info?app_key="
payload = { "no_cache": False }
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({no_cache: false})
};
fetch('https://api.flashcat.cloud/rum/resource/info?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/rum/resource/info?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([
'no_cache' => false
]),
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/rum/resource/info?app_key="
payload := strings.NewReader("{\n \"no_cache\": false\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/rum/resource/info?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"no_cache\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/rum/resource/info?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 \"no_cache\": false\n}"
response = http.request(request)
puts response.read_body{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"data": {
"account_id": 2451002751131,
"product": "rum",
"resource_id": "rum_2451002751131",
"resource_name": "rum_2451002751131",
"order_id": "fd_order_20250615_8f3a1c2b",
"version": "professional",
"offering_id": 11,
"session_measure.used_cnt": 128400,
"session_investigate.used_cnt": 5230,
"session_replay.used_cnt": 812,
"session_measure.free_cnt": 0,
"session_investigate.free_cnt": 0,
"session_replay.free_cnt": 0,
"session.days": 30,
"view.days": 30,
"error.days": 30,
"action.days": 30,
"resource.days": 15,
"long_task.days": 15,
"status": "enabled",
"created_at": 1750000000,
"updated_at": 1752000000,
"window_start_time": 1750000000,
"window_end_time": 1752592000,
"session_limit_reached": false
}
}{
"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."
}
}资源
查看 RUM 资源信息
返回账户的 RUM 资源记录及当前会话用量。
POST
/
rum
/
resource
/
info
查看 RUM 资源信息
curl --request POST \
--url 'https://api.flashcat.cloud/rum/resource/info?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"no_cache": false
}
'import requests
url = "https://api.flashcat.cloud/rum/resource/info?app_key="
payload = { "no_cache": False }
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({no_cache: false})
};
fetch('https://api.flashcat.cloud/rum/resource/info?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/rum/resource/info?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([
'no_cache' => false
]),
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/rum/resource/info?app_key="
payload := strings.NewReader("{\n \"no_cache\": false\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/rum/resource/info?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"no_cache\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/rum/resource/info?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 \"no_cache\": false\n}"
response = http.request(request)
puts response.read_body{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"data": {
"account_id": 2451002751131,
"product": "rum",
"resource_id": "rum_2451002751131",
"resource_name": "rum_2451002751131",
"order_id": "fd_order_20250615_8f3a1c2b",
"version": "professional",
"offering_id": 11,
"session_measure.used_cnt": 128400,
"session_investigate.used_cnt": 5230,
"session_replay.used_cnt": 812,
"session_measure.free_cnt": 0,
"session_investigate.free_cnt": 0,
"session_replay.free_cnt": 0,
"session.days": 30,
"view.days": 30,
"error.days": 30,
"action.days": 30,
"resource.days": 15,
"long_task.days": 15,
"status": "enabled",
"created_at": 1750000000,
"updated_at": 1752000000,
"window_start_time": 1750000000,
"window_end_time": 1752592000,
"session_limit_reached": false
}
}{
"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 次/秒 |
| 权限要求 | 无 —— 持有有效的 app_key 即可调用 |
使用说明
- 账户尚未开通 RUM 资源,或资源状态为
deleted/destroyed时,返回ResourceNotFound。 no_cache=true跳过的是资源记录本身(套餐版本、配额、状态)的短时缓存;used_cnt系列用量来自另一份小时级缓存,不受该参数影响,无论是否传该参数都可能有延迟。- 已用量字段反映当前 30 天计费窗口(
window_start_time至window_end_time)内的用量,而非历史累计总量。 expired_at仅私有化部署会返回,取自 License 到期时间;SaaS 账户该字段不会出现在响应中。- 对于
version=free的账户,用量超过所有应用的免费额度合计(单应用免费额度 × 应用数)时session_limit_reached为true;账户尚无任何应用时始终为false。
授权
在 Flashduty 控制台 账户 → APP Key 中签发的 app_key。调用任何公开 API 时都必须携带。它等同于所属账户的身份凭证,请妥善保管。
请求体
application/json
查询账户 RUM 资源记录的参数。
跳过资源记录(套餐版本、配额、状态)的短时缓存,从源头读取;不会刷新已用量数据。默认 false。
此页面对您有帮助吗?
⌘I