Skip to main content
POST
/
api
/
v2
/
memories
/
search
Search Memories
curl --request POST \
  --url http://localhost:8080/api/v2/memories/search \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "org_id": "universal",
  "project_id": "universal",
  "top_k": 10,
  "filter": "",
  "types": [
    "semantic"
  ]
}
'
{
  "content": {},
  "status": 0
}

Body

application/json
query
string
required
org_id
string
default:universal
project_id
string
default:universal
top_k
integer
default:10
filter
string
default:""
types
enum<string>[]
Available options:
semantic,
episodic

Response

200 - application/json

Successful Response

content
object
required
status
integer
default:0