Retrieve knowledge base statistics
Retrieve knowledge base statistics
GET
Retrieve knowledge base statistics
Returns time-series data for knowledge base usage metrics. Data is aggregated by date based on the specified or automatically determined interval. The response includes total search count for the period.
Authorizations
Query Parameters
Start date for the statistics range in YYYY-MM-DD format.
End date for the statistics range in YYYY-MM-DD format.
Response
Knowledge base statistics retrieved successfully.
Unique visitor counts grouped by date. Each key is a formatted date string based on the interval.
Example:
{
"2026-01-01": 42,
"2026-01-02": 38,
"2026-01-03": 51
}Total article view counts grouped by date. Each key is a formatted date string based on the interval.
Example:
{
"2026-01-01": 156,
"2026-01-02": 142,
"2026-01-03": 189
}Count of searches with no matching results, grouped by date. Each key is a formatted date string based on the interval.
Example:
{
"2026-01-01": 8,
"2026-01-02": 12,
"2026-01-03": 6
}Total number of all searches (including those with results) during the entire period.
Example:
427