Skip to main content
GET
/
v3
/
container-tags
/
{containerTag}
Get container tag settings
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.supermemory.ai/v3/container-tags/{containerTag}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "containerTag": "sm_project_default",
  "entityContext": "This project contains research papers about machine learning.",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

containerTag
string
required

Response

Container tag settings retrieved successfully

Container tag settings including entity context

containerTag
string
required

The container tag identifier

Example:

"sm_project_default"

entityContext
string | null
required

Custom context prompt for this container tag. Used to provide additional context when processing documents in this container.

Example:

"This project contains research papers about machine learning."

createdAt
string<datetime>
required

Creation timestamp

updatedAt
string<datetime>
required

Last update timestamp