Skip to main content
GET
/
api
/
GraphMemory
/
relationships
Get all relationships
curl --request GET \
  --url https://app.recallio.ai/api/GraphMemory/relationships \
  --header 'Authorization: <api-key>'
[
  {
    "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}"

Query Parameters

userId
string

User ID

projectId
string

Optional project ID

limit
integer<int32>
default:100

Maximum number of relationships to return

Response

Created

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