Performs semantic search over stored memories using cosine similarity. Returns memories ranked by relevance to the query. Optionally returns a summarized version of the memories.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
If the return facts should be summarized (because of the delay, this is usually better to use 'recall-summary' endpoint if you expect a summary
If the individual fact returns should be reranked via LLM. This is only usefull when the amount of valid return fact is larger than the limit
To retrieve 'facts' (default) or 'raw' memories. Facts will return a better result
To control the similiraty treshold in the consine research. 0.3 (default) allows a wider search, 0.7 would filter more. Range is between 0 (no similarity) and 1 (extremely similar)
Amount of facts to retrieve
Search parameters including query, filters, and result limits
User identifier to search memories for
1"user_123"
Project identifier to search memories within
1"project_abc"
Natural language query to search for similar memories. To retrieve all topics, use the '*' wildcard.
1"What are the user's UI preferences?"
Search scope: 'user' (user-specific), 'project' (project-wide), or 'team' (team-wide)
1"user"
Optional tags to filter memories by
["preferences", "ui"]OK
Unique identifier for the memory
"123e4567-e89b-12d3-a456-426614174000"
Identifier of the user who owns this memory
"user_123"
Project identifier this memory belongs to
"project_abc"
The stored content/text of the memory
"The user prefers dark mode and wants notifications disabled on weekends"
Tags associated with this memory for categorization
["preferences", "ui", "notifications"]Metadata associated with this memory
{
"timestamp": "2025-08-02T14:30:00Z",
"category": "user-preferences",
"source": "settings-page"
}Timestamp when the memory was created
"2024-01-15T10:30:00Z"
Optional expiration timestamp for the memory
"2024-12-31T23:59:59Z"
Categories associated with this memory
["preferences", "ui", "notifications"]Cosine similarity score between the query and this memory (0.0 to 1.0). Higher values indicate better matches
0.85
Human-readable interpretation of the similarity score (Excellent, Very Good, Good, Fair, Moderate, Low)
"Very Good"