Hi, I’m trying to make a browser plugin that shows me the distribution of difficulty that I’ve been at, as a trend, over the past few days/weeks/months. I don’t know how useful this is, but sometimes I think “what level have I been using recently, it feels just right, or too-easy.” and then I go skim my last few days of videos. It’d be nice to see a scatterplot or a distribution. Looking at the json responses, I can find just about everything but the difficulty…
{
"status": "OK",
"data": {
"activities": [
{
"id": 665526,
"userId": 11899,
"date": "2025-07-04",
"type": "watching",
"customTypeId": null,
"duration": 675,
"timesImmersed": 1.2928557,
"percentEngaged": 1,
"createTS": "2025-07-04T13:39:26.364Z",
"contentModuleId": 80,
"userNotes": null
},
{
"id": 665474,
"userId": 11899,
"date": "2025-07-04",
"type": "watching",
"customTypeId": null,
"duration": 557,
"timesImmersed": 1.1135932,
"percentEngaged": 1,
"createTS": "2025-07-04T13:14:15.688Z",
"contentModuleId": 133,
"userNotes": null
},
Is there any way to get the difficulty score easily?
Thanks!