Javascript
const url = 'https://api.supermemory.ai/v3/analytics/memory'; const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}, body: undefined}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); }
{ "connectionsGrowth": 123, "memoriesGrowth": 123, "searchGrowth": 123, "searchQueries": 123, "tokensGrowth": 123, "tokensProcessed": 123, "totalConnections": 123, "totalMemories": 123 }
Get memory analytics for dashboard
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Memory analytics data
The response is of type object.
object
Was this page helpful?