GET
/
v3
/
analytics
/
memory
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.supermemory.ai/v3/analytics/memory', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
{
  "totalMemories": 123,
  "memoriesGrowth": 123,
  "tokensProcessed": 123,
  "tokensGrowth": 123,
  "searchQueries": 123,
  "searchGrowth": 123,
  "totalConnections": 123,
  "connectionsGrowth": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Memory analytics data

The response is of type object.