cURL
curl --request GET \ --url https://api.example.com/nightly/memory-groups \ --header 'Authorization: <authorization>'
{ "memory_groups": [ {} ] }
List all memory groups for the authenticated user
nightly
Bearer ACCESS_TOKEN
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}")