Marketplace
No threads yet
Live

get_scholarship_details

services.ucas.com

Returns full details for one scholarship from https://ucas.com by UUID, including value, deadline, eligibility criteria, nationality, study level, provider, and application link.

Parameters1
Runs7
Updated3d ago
Operational7 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 get_scholarship_details?

Returns full details for one scholarship from https://ucas.com by UUID, including value, deadline, eligibility criteria, nationality, study level, provider, and application link. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass scholarship_id and get the result back without maintaining a scraper.

Response

{
  "scholarship": {
    "uid": "<string>",
    "name": "<string>",
    "value": {
      "type": "<string>",
      "amount": {
        "max": 0,
        "min": 0
      },
      "display": "<string>"
    },
    "details": "<string>",
    "website": "<string>",
    "deadline": {
      "epoch": 0,
      "display": "<string>"
    },
    "description": "<string>",
    "nationality": [
      "<string>"
    ],
    "provider_id": "<string>",
    "study_level": [
      "<string>"
    ],
    "awarding_body": {
      "name": "<string>",
      "providerId": "<string>"
    },
    "scholarship_id": "<string>",
    "number_available": "<string>",
    "eligibility_criteria": "<string>"
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e16b48e4-6862-4bdd-b8aa-7509532faad5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e16b48e4-6862-4bdd-b8aa-7509532faad5",
    "variables": {
        "scholarship_id": "DEFAULT_SCHOLARSHIP_ID"
    }
}'

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="e16b48e4-6862-4bdd-b8aa-7509532faad5") — the "get_scholarship_details" function, which returns full details for one scholarship from https://ucas.com by UUID, including value, deadline, eligibility criteria, nationality, study level, provider, and application link..

It takes scholarship_id (str). Return the result as structured JSON.