Get one memory
curl --request GET \
--url https://aquila.attaxr.com/api/memories/{id} \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/memories/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/memories/{id}"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"namespace": "<string>",
"key": "<string>",
"value": "<unknown>",
"searchText": "<string>",
"createdAt": "<unknown>",
"updatedAt": "<unknown>"
}{
"error": "<string>"
}{
"error": "<string>"
}Memories
Get one memory
GET
/
api
/
memories
/
{id}
Get one memory
curl --request GET \
--url https://aquila.attaxr.com/api/memories/{id} \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/memories/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/memories/{id}"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"namespace": "<string>",
"key": "<string>",
"value": "<unknown>",
"searchText": "<string>",
"createdAt": "<unknown>",
"updatedAt": "<unknown>"
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
apiKeyCookieapiKeyHeaderbearerAuth
Browser session cookie set by Better Auth sign-in.

