Marketplace
No threads yet
Live

list_colleges_by_stream_and_course

shiksha.com

Lists paginated colleges by stream and course category from https://shiksha.com with locations, fees, courses, admission criteria, rankings, placement packages, ratings and profile links.

Parameters3
Runs4
Updated1h ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_colleges_by_stream_and_course?

Lists paginated colleges by stream and course category from https://shiksha.com with locations, fees, courses, admission criteria, rankings, placement packages, ratings and profile links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass stream, course_category, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "stream": "<string>",
  "heading": "<string>",
  "colleges": [
    {}
  ],
  "per_page": 0,
  "total_pages": 0,
  "category_url": "<string>",
  "course_label": "<string>",
  "next_page_url": "<string>",
  "total_results": 0,
  "resolved_query": "<string>",
  "course_category": "<string>",
  "previous_page_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bdcb2643-2b59-4693-b15c-74cc608c47ad/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bdcb2643-2b59-4693-b15c-74cc608c47ad",
    "variables": {
        "stream": "Business & Management Studies",
        "course_category": "MBA",
        "page": 1
    }
}'

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="bdcb2643-2b59-4693-b15c-74cc608c47ad") — the "list_colleges_by_stream_and_course" function, which lists paginated colleges by stream and course category from https://shiksha.com with locations, fees, courses, admission criteria, rankings, placement packages, ratings and profile links..

It takes stream (str), course_category (str), page (int). Return the result as structured JSON.