GET
/
api
/
v1
/
sessions
/
summary
/
{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.summary.get_by_id(session_id="<id>")

    # Handle response
    print(res)
"<string>"

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

session_id
string
required

Response

200
application/json
Successful Response

The response is of type string.