cURL
curl --request POST \ --url https://app.recallio.ai/api/GraphMemory/search \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "query": "<string>", "user_id": "<string>", "project_id": "<string>", "limit": 123, "threshold": 123 } '
[ { "source": "<string>", "relationship": "<string>", "destination": "<string>", "score": 123, "source_type": "<string>", "destination_type": "<string>" } ]
Performs semantic search over stored graph using cosine similarity.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
Graph search request
Created