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

fetch('https://api.supermemory.ai/v3/settings', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
{
  "shouldLLMFilter": true,
  "filterPrompt": "<string>",
  "includeItems": [
    "<string>"
  ],
  "excludeItems": [
    "<string>"
  ],
  "filterTags": {}
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Settings retrieved successfully

The response is of type object.