GET
/
v1
/
trace-learn
/
tutor
/
students
/
{studentId}
/
skills
TypeScript client
import { TxAgentKitClient } from '@tx-agent-kit/sdk'

const client = new TxAgentKitClient({
  token: process.env.TX_AGENT_KIT_TOKEN
})

const response = await client.traceLearn.getTraceLearnTutorStudentSkillMastery({
  studentId: process.env.TX_AGENT_KIT_STUDENT_ID ?? "studentId",
})
{
  "studentId": "<string>",
  "skills": [
    {
      "skillId": "<string>",
      "skillLabel": "<string>",
      "subjectName": "<string>",
      "masteryPercent": 50,
      "observationCount": 123,
      "lastPractisedAt": "<string>"
    }
  ],
  "strongSkillLabels": [
    "<string>"
  ],
  "focusSkillLabels": [
    "<string>"
  ]
}

Path Parameters

studentId
string
required

Response

Success

studentId
string
required

a string at most 128 character(s) long

Required string length: 1 - 128
source
enum<string>
required
Available options:
atomic,
topic-bkt,
none
skills
object[]
required
strongSkillLabels
string[]
required
focusSkillLabels
string[]
required