Live
list_class_subjects
syllabus.ngReturns all subjects available for a requested class level on https://syllabus.ng, including each subject's reusable slug and page URL.
Parameters1
Runs8
Updated10d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_class_subjects?
Returns all subjects available for a requested class level on https://syllabus.ng, including each subject's reusable slug and page URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass class_level and get the result back without maintaining a scraper.
Response
{
"subjects": [
{
"url": "<string>",
"name": "<string>",
"slug": "<string>"
}
],
"class_level": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/f8e58daa-e501-4326-8418-a42f04c4dc3a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f8e58daa-e501-4326-8418-a42f04c4dc3a",
"variables": {
"class_level": "JSS1"
}
}'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="f8e58daa-e501-4326-8418-a42f04c4dc3a") — the "list_class_subjects" function, which returns all subjects available for a requested class level on https://syllabus.ng, including each subject's reusable slug and page URL.. It takes class_level (str). Return the result as structured JSON.