Skip to main content
Returns all memories stored for the currently authenticated user, ordered by most recently updated first.
Authorization
string
required
Bearer token obtained from the authenticate endpoint.

Response

user_memories
array
List of memory objects.
curl -X GET https://api.trellis.sh/v1/user-memories \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "user_memories": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "organization_id": "org_01HX...",
      "member_id": "member_01HX...",
      "content": "Prefers responses in bullet points",
      "created_at": "2025-03-01T10:00:00+00:00",
      "updated_at": "2025-03-15T14:30:00+00:00"
    }
  ]
}