get_free_lessons_by_super_group
testbook.comReturns upcoming and live free lesson cards from https://testbook.com for one exam super group. Includes schedule fields, instructor details, and lesson series information for study planning.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_free_lessons_by_super_group?
Returns upcoming and live free lesson cards from https://testbook.com for one exam super group. Includes schedule fields, instructor details, and lesson series information for study planning. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass super_group_id, skip, limit, language, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"skip": 0,
"limit": 0,
"lessons": [
{}
],
"language": "<string>",
"server_time": "<string>",
"returned_count": 0,
"super_group_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/1710c766-0168-4265-9a34-a2b142820451/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1710c766-0168-4265-9a34-a2b142820451",
"variables": {
"super_group_id": "DEFAULT_SUPER_GROUP_ID",
"skip": 0,
"limit": 9,
"language": "English",
"timeout_seconds": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="1710c766-0168-4265-9a34-a2b142820451") — the "get_free_lessons_by_super_group" function, which returns upcoming and live free lesson cards from https://testbook.com for one exam super group. Includes schedule fields, instructor details, and lesson series information for study planning.. It takes super_group_id (str), skip (int), limit (int), language (str), timeout_seconds (int). Return the result as structured JSON.