For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
        • GETReturns a fact by UUID
        • DELDelete a fact for the given UUID
        • POSTEnd multiple sessions.
        • POSTSearch sessions for the specified query.
        • PATCHUpdate a session.
        • POSTDeprecated: Classify Session
        • POSTEnd a session
        • GETReturns all facts for a session by ID
        • POSTAdds facts to a session
        • GETGet Message
        • PATCHUpdates the metadata of a message.
        • POSTDeprecated: Use search_sessions method instead
        • GETReturns a session's summaries by ID
        • GETSynthesize a question
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceDeprecatedMemory

Returns a session's summaries by ID

Deprecated
GET
https://api.getzep.com/api/v2/sessions/:sessionId/summary
GET
/api/v2/sessions/:sessionId/summary
$curl https://api.getzep.com/api/v2/sessions/sessionId/summary \
> -H "Authorization: <apiKey>"
1{
2 "row_count": 1,
3 "summaries": [
4 {
5 "content": "string",
6 "created_at": "string",
7 "metadata": {},
8 "related_message_uuids": [
9 "string"
10 ],
11 "token_count": 1,
12 "uuid": "string"
13 }
14 ],
15 "total_count": 1
16}

Deprecated API: Get session summaries by ID

Was this page helpful?
Previous

Synthesize a question

Next
Built with

Path parameters

sessionIdstringRequired
Session ID

Response

OK
row_countinteger
summarieslist of objects
total_countinteger

Errors

404
Not Found Error
500
Internal Server Error