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.",
  "memoryFilesystemPaths": [
    "/memory/",
    "/user.md"
  ],
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://supermemory-docs-smfs.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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

Maximum string length: 100
Pattern: ^[a-zA-Z0-9_:-]+$
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."

memoryFilesystemPaths
string[] | null
required

Per-tag allowlist of filesystem paths that trigger memory generation for mount-ingested documents. Docs whose filepath does not match are ingested as 'superrag' (chunked and searchable, no memory extraction).

Example:
["/memory/", "/user.md"]
createdAt
string<datetime>
required

Creation timestamp

updatedAt
string<datetime>
required

Last update timestamp