Get system report REST API
GET
/api/admin/system/report
const url = 'https://hitkeep.com/api/admin/system/report';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://hitkeep.com/api/admin/system/report \ --cookie hk_token=<hk_token>Returns a markdown system report with instance, configuration, storage, DuckDB memory, ingest, and feature information for support requests.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”System report (text/markdown)