Live
list_college_courses
shiksha.comReturns all course offerings for a college from https://shiksha.com with fees, seats, eligibility, accepted exams and every nonempty course field.
Parameters1
Runs4
Updated1d ago
Operational4 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_college_courses?
Returns all course offerings for a college from https://shiksha.com with fees, seats, eligibility, accepted exams and every nonempty course field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass college_url and get the result back without maintaining a scraper.
Response
{
"courses": [
{}
],
"programs": [
{}
],
"college_id": 0,
"source_url": "<string>",
"fee_currency": "<string>",
"total_courses": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/729cf757-2d6b-4a97-82ef-773b5060411b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "729cf757-2d6b-4a97-82ef-773b5060411b",
"variables": {
"college_url": "https://www.shiksha.com/university/iit-bombay-indian-institute-of-technology-mumbai-54212"
}
}'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="729cf757-2d6b-4a97-82ef-773b5060411b") — the "list_college_courses" function, which returns all course offerings for a college from https://shiksha.com with fees, seats, eligibility, accepted exams and every nonempty course field.. It takes college_url (str). Return the result as structured JSON.