- MSL-API-V3文档
- MSL本体
- 服务端下载源
- Frp服务
- 日志系统
- 其它
- 管理类
查询API路由统计信息
GET
/stat/url
请求参数
Query 参数
type
string
可选
示例值:
all
Header 参数
User-Agent
string
可选
默认值:
MSL API Test
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.mslmc.cn/v3/stat/url?type=all' \
--header 'User-Agent: MSL API Test'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
totalCount
integer
必需
uniqueIPs
integer
必需
requests
array [object {2}]
必需
示例
{
"code": 200,
"message": "",
"data": {
"totalCount": 23,
"uniqueIPs": 0,
"requests": [
{
"route": "/download/frpc",
"count": 2
},
{
"route": "/download/server",
"count": 3
},
{
"route": "/download/update",
"count": 1
},
{
"route": "/query/available_server_types",
"count": 1
},
{
"route": "/query/available_versions",
"count": 1
},
{
"route": "/query/frp",
"count": 5
},
{
"route": "/query/notice",
"count": 6
},
{
"route": "/query/server_classify",
"count": 1
},
{
"route": "/query/servers_description",
"count": 1
},
{
"route": "/stat/count",
"count": 2
}
]
}
}
修改于 2024-07-08 11:52:59