GET
/
api
/
v1
/
sessions
/
transcript
/
{session_id}
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.sessions.transcript.get_by_id(session_id="<id>")

    # Handle response
    print(res)
{
  "session_id": "<string>",
  "transcription": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "lang": "en-US",
      "source": "user",
      "text": "<string>"
    }
  ],
  "actions": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "tool_name": "<string>",
      "tool_request": "<string>",
      "tool_result": "<string>",
      "tool_error": "<string>"
    }
  ]
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

session_id
string
required

Response

200
application/json
Successful Response

Text transcript of a given session. For more information, see Console docs.

session_id
string
required

Internal ID of the session

transcription
object[]
required

Transcriptions of all messages in the session

Information about a given message from a user to an agent or vice-versa.

actions
object[]
required

Tool invocations that occurred during the session

Information about a given tool invocation as part of a session.