Marketplace
No threads yet
Live

search_researcher

profiles.ucl.ac.uk

Searches https://profiles.ucl.ac.uk for UCL researcher profiles by keyword, department, and field of research. Returns paginated expert records with names, roles, departments, research fields, profile summaries, and other available researcher details.

Parameters5
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_researcher?

Searches https://profiles.ucl.ac.uk for UCL researcher profiles by keyword, department, and field of research. Returns paginated expert records with names, roles, departments, research fields, profile summaries, and other available researcher details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, department, field_of_research, page, per_page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "total": 0,
  "results": [
    {
      "name": "<string>",
      "about": "<string>",
      "media": [
        {
          "embed_url": "<string>",
          "description": "<string>",
          "thumbnail_url": "<string>"
        }
      ],
      "title": "<string>",
      "url_id": "<string>",
      "position": "<string>",
      "last_name": "<string>",
      "object_id": 0,
      "positions": [
        {
          "position": "<string>",
          "department": "<string>",
          "institutional_appointment": true
        }
      ],
      "department": "<string>",
      "first_name": "<string>",
      "updated_at": "<string>",
      "profile_url": "<string>",
      "availability": [
        "<string>"
      ],
      "discovery_id": "<string>",
      "research_fields": [
        "<string>"
      ],
      "sustainable_development_goals": [
        "<string>"
      ]
    }
  ],
  "per_page": 0,
  "total_pages": 0,
  "total_is_lower_bound": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2b027570-99a2-4403-9f98-dd55f2d9eddf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2b027570-99a2-4403-9f98-dd55f2d9eddf",
    "variables": {
        "query": "artificial intelligence",
        "department": "",
        "field_of_research": "",
        "page": 1,
        "per_page": 10
    }
}'

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="2b027570-99a2-4403-9f98-dd55f2d9eddf") — the "search_researcher" function, which searches https://profiles.ucl.ac.uk for UCL researcher profiles by keyword, department, and field of research. Returns paginated expert records with names, roles, departments, research fields, profile summaries, and other available researcher details..

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