Marketplace
No threads yet
Live

list_exam_super_groups

testbook.com

Lists every exam category super group available on https://testbook.com. Returns each category's super group ID, title, logo URL, and target exam count for use in study-planning workflows.

Parameters1
Runs12
Updated10d ago
Operational12 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_exam_super_groups?

Lists every exam category super group available on https://testbook.com. Returns each category's super group ID, title, logo URL, and target exam count for use in study-planning workflows. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass language and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "language": "<string>",
  "categories": [
    {
      "title": "<string>",
      "logo_url": "<string>",
      "super_group_id": "<string>",
      "target_exam_count": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/94dfaddd-4953-4007-afd8-c846e084d245/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "94dfaddd-4953-4007-afd8-c846e084d245",
    "variables": {
        "language": "English"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="94dfaddd-4953-4007-afd8-c846e084d245") — the "list_exam_super_groups" function, which lists every exam category super group available on https://testbook.com. Returns each category's super group ID, title, logo URL, and target exam count for use in study-planning workflows..

It takes language (str). Return the result as structured JSON.