Skip to main content
GET
/
v2
/
workspaces
/
{workspace_id}
/
sessions
/
{session_id}
/
summaries
Get Session Summaries
curl --request GET \
  --url http://localhost:8000/v2/workspaces/{workspace_id}/sessions/{session_id}/summaries \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "short_summary": {
    "content": "<string>",
    "message_id": "<string>",
    "summary_type": "<string>",
    "created_at": "<string>",
    "token_count": 123
  },
  "long_summary": {
    "content": "<string>",
    "message_id": "<string>",
    "summary_type": "<string>",
    "created_at": "<string>",
    "token_count": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

ID of the workspace

session_id
string
required

ID of the session

Response

Successful Response

id
string
required
short_summary
object | null

The short summary if available

long_summary
object | null

The long summary if available