get_lvrc_schedule
boslive.icai.orgRetrieves the current Live Virtual Revisionary Classes (LVRC) schedule for a CA course level from https://boslive.icai.org. Returns upcoming revisionary class dates, papers, topics, faculty, session times, and associated links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_lvrc_schedule?
Retrieves the current Live Virtual Revisionary Classes (LVRC) schedule for a CA course level from https://boslive.icai.org. Returns upcoming revisionary class dates, papers, topics, faculty, session times, and associated links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass course_level and get the result back without maintaining a scraper.
Response
{
"classes": [
{
"date": "<string>",
"topic": "<string>",
"faculty": "<string>",
"paper_name": "<string>",
"row_number": 0,
"session_time": "<string>",
"associated_links": [
{
"url": "<string>",
"label": "<string>"
}
]
}
],
"as_of_date": "<string>",
"course_level": "<string>",
"schedule_url": "<string>",
"schedule_type": "<string>",
"schedule_title": "<string>",
"schedule_available": true,
"has_upcoming_classes": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/e29fe99b-5daa-4d32-9840-4109c90ca9e2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e29fe99b-5daa-4d32-9840-4109c90ca9e2",
"variables": {
"course_level": "final"
}
}'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="e29fe99b-5daa-4d32-9840-4109c90ca9e2") — the "get_lvrc_schedule" function, which retrieves the current Live Virtual Revisionary Classes (LVRC) schedule for a CA course level from https://boslive.icai.org. Returns upcoming revisionary class dates, papers, topics, faculty, session times, and associated links.. It takes course_level (str). Return the result as structured JSON.