Skip to main content
POST
/
api
/
GraphMemory
/
searchv2
Search the Graph
curl --request POST \
  --url https://app.recallio.ai/api/GraphMemory/searchv2 \
  --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>"
  }
]

Authorizations

Authorization
string
header
required

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

Body

Graph search request

query
string | null
user_id
string | null
project_id
string | null
limit
integer<int32>
threshold
number<double>

Response

Created

source
string | null
relationship
string | null
destination
string | null
score
number<double>
source_type
string | null
destination_type
string | null