Get Memory Health
GET
/api/admin/memory/health
const url = 'https://example.com/api/admin/memory/health';const options = {method: 'GET', headers: {Authorization: 'Bearer <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://example.com/api/admin/memory/health \ --header 'Authorization: Bearer <token>'Return the latest MemoryHealthReport.
Requires superadmin auth. Returns the most recent moderation report, or 404 if no moderation has been run yet.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
example