GET
/
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"
    }
  ]
}

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
required

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

Response

200
application/json

List of memory tags.

The response is of type object.