Marketplace
No threads yet
Live

get_researcher_profile

profiles.ucl.ac.uk

Fetches a detailed UCL researcher profile from https://profiles.ucl.ac.uk by url_id. Returns contact and research information plus up to 100 recent publications sorted by date, including authorship, DOI, journal, type, and other available publication details.

Parameters1
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 get_researcher_profile?

Fetches a detailed UCL researcher profile from https://profiles.ucl.ac.uk by url_id. Returns contact and research information plus up to 100 recent publications sorted by date, including authorship, DOI, journal, type, and other available publication details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass url_id and get the result back without maintaining a scraper.

Response

{
  "profile": {
    "name": "<string>",
    "about": "<string>",
    "email": "<string>",
    "media": [
      {
        "embed_url": "<string>",
        "description": "<string>",
        "thumbnail_url": "<string>"
      }
    ],
    "title": "<string>",
    "labels": [
      {
        "value": "<string>",
        "scheme": "<string>"
      }
    ],
    "url_id": "<string>",
    "initials": "<string>",
    "orcid_id": "<string>",
    "position": "<string>",
    "addresses": [
      {
        "city": "<string>",
        "state": "<string>",
        "country": "<string>",
        "formatted": "<string>",
        "postal_code": "<string>",
        "country_code": "<string>",
        "organisation": "<string>",
        "street_address": "<string>",
        "sub_organisation": "<string>"
      }
    ],
    "last_name": "<string>",
    "object_id": 0,
    "orcid_url": "<string>",
    "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>"
    ],
    "research_interests": "<string>",
    "teaching_activities": "<string>",
    "elements_profile_url": "<string>",
    "postgraduate_training": [
      {
        "title": "<string>",
        "institution": {
          "country": "<string>",
          "formatted": "<string>",
          "country_code": "<string>",
          "organisation": "<string>",
          "sub_organisation": "<string>"
        }
      }
    ],
    "institutional_appointments": [
      {
        "end_date": {
          "day": 0,
          "year": 0,
          "month": 0,
          "date_time": "<string>"
        },
        "position": "<string>",
        "start_date": {
          "day": 0,
          "year": 0,
          "month": 0,
          "date_time": "<string>"
        },
        "institution": {
          "country": "<string>",
          "formatted": "<string>",
          "country_code": "<string>",
          "organisation": "<string>",
          "sub_organisation": "<string>"
        }
      }
    ],
    "additional_profile_sections": {},
    "sustainable_development_goals": [
      "<string>"
    ]
  },
  "publications": [
    {
      "doi": "<string>",
      "issn": "<string>",
      "type": "<string>",
      "issue": "<string>",
      "pages": "<string>",
      "title": "<string>",
      "labels": [
        {
          "value": "<string>",
          "scheme": "<string>"
        }
      ],
      "number": "<string>",
      "url_id": "<string>",
      "volume": "<string>",
      "authors": [
        {
          "name": "<string>",
          "url_id": "<string>",
          "full_name": "<string>",
          "object_id": 0,
          "short_name": "<string>",
          "profile_url": "<string>",
          "discovery_id": "<string>"
        }
      ],
      "editors": [
        {
          "name": "<string>",
          "url_id": "<string>",
          "full_name": "<string>",
          "object_id": 0,
          "short_name": "<string>",
          "profile_url": "<string>",
          "discovery_id": "<string>"
        }
      ],
      "journal": "<string>",
      "object_id": 0,
      "publisher": "<string>",
      "author_url": "<string>",
      "public_url": "<string>",
      "updated_at": "<string>",
      "discovery_id": "<string>",
      "parent_title": "<string>",
      "publisher_url": "<string>",
      "acceptance_date": {
        "day": 0,
        "year": 0,
        "month": 0,
        "date_time": "<string>"
      },
      "conference_name": "<string>",
      "publication_date": {
        "day": 0,
        "year": 0,
        "month": 0,
        "date_time": "<string>"
      },
      "repository_pdf_url": "<string>"
    }
  ],
  "publication_sort": "<string>",
  "publication_count": 0,
  "publications_returned": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e49f3055-2d43-4b5e-ab61-138c0a36816d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e49f3055-2d43-4b5e-ab61-138c0a36816d",
    "variables": {
        "url_id": "34250-bart-vanneste"
    }
}'

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="e49f3055-2d43-4b5e-ab61-138c0a36816d") — the "get_researcher_profile" function, which fetches a detailed UCL researcher profile from https://profiles.ucl.ac.uk by url_id. Returns contact and research information plus up to 100 recent publications sorted by date, including authorship, DOI, journal, type, and other available publication details..

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