Marketplace
No threads yet
Live

get_person_profile

data.fei.org

Returns a detailed person profile from https://data.fei.org with identity, nationality, status, group memberships, languages, registrations, leagues, qualifications, and roles.

Parameters2
Runs6
Updated3d ago
Operational6 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_person_profile?

Returns a detailed person profile from https://data.fei.org with identity, nationality, status, group memberships, languages, registrations, leagues, qualifications, and roles. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass p_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "p_id": "<string>",
  "person": {},
  "sections": {},
  "language_skills": [
    {}
  ],
  "group_memberships": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c49398af-2b5c-4a77-a70f-6a1d8d2ed710/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c49398af-2b5c-4a77-a70f-6a1d8d2ed710",
    "variables": {
        "p_id": "128131DAB098C39C850B339847D0E1A9",
        "timeout_seconds": 30
    }
}'

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="c49398af-2b5c-4a77-a70f-6a1d8d2ed710") — the "get_person_profile" function, which returns a detailed person profile from https://data.fei.org with identity, nationality, status, group memberships, languages, registrations, leagues, qualifications, and roles..

It takes p_id (str), timeout_seconds (int). Return the result as structured JSON.