Marketplace
No threads yet
Live

search_educational_programs

applyboard.com

Searches educational programs available through ApplyBoard at https://id.applyboard.com and returns paginated program records with tuition, intake dates, school details, tags, and success scores. With no query, it lists all programs ranked by success score.

Parameters3
Runs9
Updated10d ago
Operational9 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 search_educational_programs?

Searches educational programs available through ApplyBoard at https://id.applyboard.com and returns paginated program records with tuition, intake dates, school details, tags, and success scores. With no query, it lists all programs ranked by success score. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "has_next": true,
  "programs": [
    {}
  ],
  "page_size": 0,
  "total_pages": 0,
  "has_previous": true,
  "total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7f49bce2-a575-443a-8923-25cdcc922477/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7f49bce2-a575-443a-8923-25cdcc922477",
    "variables": {
        "query": "",
        "page": 1,
        "page_size": 12
    }
}'

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="7f49bce2-a575-443a-8923-25cdcc922477") — the "search_educational_programs" function, which searches educational programs available through ApplyBoard at https://id.applyboard.com and returns paginated program records with tuition, intake dates, school details, tags, and success scores. With no query, it lists all programs ranked by success score..

It takes query (str), page (int), page_size (int). Return the result as structured JSON.