search_persons
data.fei.orgSearches https://data.fei.org for persons by last name or FEI ID and returns matching people with roles, federation details, status, and encrypted Name_id values for detail lookups.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_persons?
Searches https://data.fei.org for persons by last name or FEI ID and returns matching people with roles, federation details, status, and encrypted Name_id values for detail lookups. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass last_name, fei_id and get the result back without maintaining a scraper.
Response
{
"persons": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/1fb82cfb-d8ff-4461-9db8-0978a92904eb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1fb82cfb-d8ff-4461-9db8-0978a92904eb",
"variables": {
"last_name": "DUJARDIN",
"fei_id": ""
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="1fb82cfb-d8ff-4461-9db8-0978a92904eb") — the "search_persons" function, which searches https://data.fei.org for persons by last name or FEI ID and returns matching people with roles, federation details, status, and encrypted Name_id values for detail lookups.. It takes last_name (str), fei_id (str). Return the result as structured JSON.