Skip to main content
POST
/
v3
/
settings
/
suggest-buckets
Suggest profile buckets
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.supermemory.ai/v3/settings/suggest-buckets', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "suggestions": [
    {
      "key": "<string>",
      "description": ""
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Bucket suggestions generated

suggestions
object[]
required