Skip to main content
GET
/
nightly
/
memory-groups
List Memory Groups
curl --request GET \
  --url https://api.example.com/nightly/memory-groups \
  --header 'Authorization: <authorization>'
{
  "memory_groups": [
    {}
  ]
}

GET /nightly/memory-groups

List all memory groups for the authenticated user. Memory groups are created automatically when you use the nightly parameter in chat completions.

Authentication

Authorization
string
required
Bearer token from login. Format: Bearer ACCESS_TOKEN

Response

memory_groups
array
Array of memory group names

Example

import requests

response = requests.get(
    "https://rkdune--symmetry.modal.run/nightly/memory-groups",
    headers={"Authorization": f"Bearer {access_token}"}
)

data = response.json()
for group in data["memory_groups"]:
    print(f"Memory Group: {group}")

Errors

StatusDescription
401Invalid or missing authorization
404Account not found