Skip to main content
GET
/
api
/
v1
/
users
/
me
/
analytics
/
performance
Get Performance
curl --request GET \
  --url https://api.seamind.xyz/api/v1/users/me/analytics/performance \
  --header 'Authorization: Bearer <token>'
{
  "courses": [
    {
      "courseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "courseTitle": "<string>",
      "accuracyPercent": 123,
      "avgTimePerQuestion": 123,
      "totalQuestionsAnswered": 123,
      "quadrant": "<string>",
      "fleetAccuracyPercent": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

Performance response with per-course data.

courses
CoursePerformanceDTO · object[]
required