GET
/
api
/
v1
/
sessions
/
full-summary
/
{session_id}
import { SyllableSDK } from "syllable-sdk";

const syllableSDK = new SyllableSDK({
  apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});

async function run() {
  const result = await syllableSDK.sessions.fullSummary.getById({
    sessionId: "<id>",
  });

  // Handle the result
  console.log(result);
}

run();
{
  "summary": "<string>",
  "rating": "<string>"
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

session_id
string
required

Response

200
application/json
Successful Response

Summary for a given session.

summary
string | null

The AI summary of the session

rating
string | null

The AI rating of the session