GET /v1/statistics/detail
Get detailed statistics
Returns comprehensive statistics with optional caching (TTL: 5 minutes)
Request
GET /v1/statistics/detail
Parameters
[
{
"schema": {
"type": "string"
},
"required": false,
"name": "metrics",
"in": "query"
},
{
"schema": {
"type": "string",
"enum": [
"today",
"7d",
"30d",
"90d",
"all"
]
},
"required": false,
"name": "period",
"in": "query"
},
{
"schema": {
"type": "string",
"enum": [
"0",
"1"
]
},
"required": false,
"name": "cache",
"in": "query"
}
]
Response
{
"200": {
"description": "Statistics retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"cached": {
"type": "boolean"
},
"cache_expires_in": {
"type": "number"
},
"data": {}
},
"required": [
"success",
"message"
]
}
}
}
}
}
View in Interactive API Reference