list_study_material_courses
boslive.icai.orgLists all available study material course categories from https://boslive.icai.org, including course title, course code, and direct course URL. Use the returned course_code values as input for study material language lookups on the ICAI Board of Studies Knowledge Portal.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_study_material_courses?
Lists all available study material course categories from https://boslive.icai.org, including course title, course code, and direct course URL. Use the returned course_code values as input for study material language lookups on the ICAI Board of Studies Knowledge Portal. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page_url and get the result back without maintaining a scraper.
Response
{
"courses": [
{
"url": "<string>",
"title": "<string>",
"course_code": "<string>"
}
],
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/77a6eaa4-2b7e-43d7-80b7-d1de80d87ac3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "77a6eaa4-2b7e-43d7-80b7-d1de80d87ac3",
"variables": {
"page_url": "https://boslive.icai.org/education_content_study_material_new_scheme.php"
}
}'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="77a6eaa4-2b7e-43d7-80b7-d1de80d87ac3") — the "list_study_material_courses" function, which lists all available study material course categories from https://boslive.icai.org, including course title, course code, and direct course URL. Use the returned course_code values as input for study material language lookups on the ICAI Board of Studies Knowledge Portal.. It takes page_url (str). Return the result as structured JSON.