GET
/
session
/
{session_id}
/
session-log
Get Session Log
curl --request GET \
  --url https://ella.navgurukul.org/api/session/{session_id}/session-log \
  --header 'Authorization: Bearer <token>'
{
  "session_id": "<string>",
  "child_id": "<string>",
  "level": "<string>",
  "progression_model": "<string>",
  "prompt_version": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "turns_total": 123,
  "topic": "<string>",
  "aimed_at": [
    "<string>"
  ],
  "hit_targets": [
    "<string>"
  ],
  "skills_evidenced": [
    {
      "id": "<string>",
      "name": "<string>",
      "confidence": 123,
      "prompted": true,
      "evidence": "<string>",
      "reason": "<string>"
    }
  ],
  "state_changes": [
    {
      "id": "<string>",
      "from": "<string>",
      "to": "<string>",
      "name": "<string>"
    }
  ],
  "transcript": [
    {
      "speaker": "<string>",
      "text": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
default:eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1N2U0NDg0NC04YWRiLTQyNTgtYWI4Mi05MWNmNDUxZTQ4OGEiLCJleHAiOjIwOTY4Njg2Njh9._oyjz0enX_sLYvidUm4EUMq5oTNUpxZmowoxIf5J7dc
required

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

Path Parameters

session_id
string
required

Response

Successful Response

session_id
string
required
child_id
string
required
level
string | null
required
progression_model
string
required
prompt_version
string
required
timestamp
string<date-time>
required
turns_total
integer
required
topic
string | null
required
aimed_at
string[]
required
hit_targets
string[]
required
skills_evidenced
SessionLogGradedSkill · object[]
required
state_changes
SessionLogStateChange · object[]
required
transcript
SessionLogTranscriptMessage · object[]
required