Live
list_study_material_languages
boslive.icai.orgLists the available study material language options for a course on https://boslive.icai.org. Returns each language label, language value, and direct page URL for paper-level lookups.
Parameters1
Runs9
Updated8d ago
Operational9 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_study_material_languages?
Lists the available study material language options for a course on https://boslive.icai.org. Returns each language label, language value, and direct page URL for paper-level lookups. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass course_code and get the result back without maintaining a scraper.
Response
{
"languages": [
{
"label": "<string>",
"language": "<string>",
"page_url": "<string>"
}
],
"source_url": "<string>",
"course_code": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/360cb19c-6fbd-47a8-9d75-3dd8d3addff9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "360cb19c-6fbd-47a8-9d75-3dd8d3addff9",
"variables": {
"course_code": "foundation"
}
}'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="360cb19c-6fbd-47a8-9d75-3dd8d3addff9") — the "list_study_material_languages" function, which lists the available study material language options for a course on https://boslive.icai.org. Returns each language label, language value, and direct page URL for paper-level lookups.. It takes course_code (str). Return the result as structured JSON.