Skip to main content
POST
/
api
/
Memory
/
recall-topics
Retrieve all available topics for provided user
curl --request POST \
  --url https://app.recallio.ai/api/Memory/recall-topics \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userId": "user_123",
  "projectId": "project_abc"
}
'
{
  "topics": [
    {
      "name": "<string>",
      "subTopics": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ]
    }
  ],
  "users": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Body

userId
string
required

User identifier to search memories for

Minimum string length: 1
Example:

"user_123"

projectId
string | null

Project identifier to search memories within

Example:

"project_abc"

Response

OK

topics
object[] | null
users
string[] | null