curl --request GET \
--url 'https://api.scanova.io/analytics/overview/?type=all_time,current_month,last_months,scan_dates' \
--header 'Authorization: YOUR_API_KEY'
{
"all_time": { "total_scans": 18420, "total_qr_codes": 96 },
"current_month": { "total_scans": 1204, "unique_scans": 980 },
"last_months": [["2026-06", 3120], ["2026-07", 4410], ["2026-08", 3980]],
"scan_dates": [["2026-09-01", 42], ["2026-09-02", 51]]
}
分析与套餐
分析概览
GET /analytics/overview/
GET
/
analytics
/
overview
/
curl --request GET \
--url 'https://api.scanova.io/analytics/overview/?type=all_time,current_month,last_months,scan_dates' \
--header 'Authorization: YOUR_API_KEY'
{
"all_time": { "total_scans": 18420, "total_qr_codes": 96 },
"current_month": { "total_scans": 1204, "unique_scans": 980 },
"last_months": [["2026-06", 3120], ["2026-07", 4410], ["2026-08", 3980]],
"scan_dates": [["2026-09-01", 42], ["2026-09-02", 51]]
}
返回账户级别的扫描分析聚合数据 —— 涵盖账户下所有 QR 码,不限于单一资源。
这与仪表板概览小部件所依赖的聚合数据相同 —— 它没有请求体,也无法限定到特定的 QR 码、标签或文件夹。若需针对一组 QR 码的限定分析,请改用 QR 分析。
需要具有
MANAGEMENT_API(或 MANAGEMENT_API_SANDBOX)配额的管理 API 密钥 —— 参见管理 API 概述 —— 以及账户自身的 QR_ANALYTICS_OVERVIEW 配额和 ANALYTICS_CAN_VIEW 权限。string
要包含的以逗号分隔的子集,取自
all_time、current_month、last_months、scan_dates。省略则包含全部。curl --request GET \
--url 'https://api.scanova.io/analytics/overview/?type=all_time,current_month,last_months,scan_dates' \
--header 'Authorization: YOUR_API_KEY'
{
"all_time": { "total_scans": 18420, "total_qr_codes": 96 },
"current_month": { "total_scans": 1204, "unique_scans": 980 },
"last_months": [["2026-06", 3120], ["2026-07", 4410], ["2026-08", 3980]],
"scan_dates": [["2026-09-01", 42], ["2026-09-02", 51]]
}
相关内容
授权
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
查询参数
Comma-separated subset of all_time, current_month, last_months, scan_dates.
响应
200 - application/json
Account-wide analytics overview.
此页面对您有帮助吗?