cURL
curl --request GET \ --url https://api.example.com/nightly/memories \ --header 'Authorization: <authorization>'
{ "group": "<string>", "memories": [ { "id": "<string>", "content": "<string>", "labels": [ {} ] } ] }
Get all memories for a specific memory group
Bearer ACCESS_TOKEN
Show child attributes
import requests response = requests.get( "https://rkdune--symmetry.modal.run/nightly/memories", headers={"Authorization": f"Bearer {access_token}"}, params={"group": "my_math_agent"} ) data = response.json() print(f"Memory Group: {data['group']}") for memory in data["memories"]: print(f"[{memory['id']}] {memory['content']}") print(f" Labels: {', '.join(memory['labels'])}")