curl --request GET \
--url https://api.getfernand.com/reporting/knowledge/statistics \
--header 'X-API-Key: <api-key>'{
"visitors": {
"2026-01-01": 42,
"2026-01-02": 38,
"2026-01-03": 51
},
"views": {
"2026-01-01": 156,
"2026-01-02": 142,
"2026-01-03": 189
},
"searches": {
"2026-01-01": 8,
"2026-01-02": 12,
"2026-01-03": 6
},
"total_searches": 427
}curl --request GET \
--url https://api.getfernand.com/reporting/knowledge/statistics \
--header 'X-API-Key: <api-key>'{
"visitors": {
"2026-01-01": 42,
"2026-01-02": 38,
"2026-01-03": 51
},
"views": {
"2026-01-01": 156,
"2026-01-02": 142,
"2026-01-03": 189
},
"searches": {
"2026-01-01": 8,
"2026-01-02": 12,
"2026-01-03": 6
},
"total_searches": 427
}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.Documentation Index
Fetch the complete documentation index at: https://developers.getfernand.com/llms.txt
Use this file to discover all available pages before exploring further.
Start date for the statistics range in YYYY-MM-DD format.
End date for the statistics range in YYYY-MM-DD format.
Knowledge base statistics retrieved successfully.
Unique visitor counts grouped by date. Each key is a formatted date string based on the interval.
Show child attributes
{
"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.
Show child attributes
{
"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.
Show child attributes
{
"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.
427
Was this page helpful?