Skip to main content
GET
/
tags
Get Memory Tags
curl --request GET \
  --url https://api.memoram.app/api/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "color": "#3B82F6",
      "description": "<string>",
      "is_enabled": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://memoram.mintlify.app/llms.txt

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

Retrieve a list of all memory tags available to the specified user. Requires the user’s ID.

Authorization

Requires Bearer token authentication using your Developer JWT.

Authorizations

Authorization
string
header
required

JWT token obtained via /auth/token endpoint.

Query Parameters

user_id
string<uuid>
required

The unique ID of the user whose tags are being requested.

Response

List of memory tags.

items
object[]