Marketplace
No threads yet
Live

get_national_federation_details

data.fei.org

Returns detailed information for a specific FEI National Federation from https://data.fei.org, including profile fields, contact details, leadership links, and the full member list across all member pages.

Parameters2
Runs10
Updated8d ago
Operational10 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_national_federation_details?

Returns detailed information for a specific FEI National Federation from https://data.fei.org, including profile fields, contact details, leadership links, and the full member list across all member pages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass federation_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "contact": {},
  "country": "<string>",
  "members": [
    {}
  ],
  "profile": {},
  "flag_url": "<string>",
  "noc_code": "<string>",
  "anthem_url": "<string>",
  "leadership": [
    {}
  ],
  "details_url": "<string>",
  "federation_id": 0,
  "members_total_count": 0,
  "members_total_pages": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/82def49c-1109-4e26-8014-af496a078732/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "82def49c-1109-4e26-8014-af496a078732",
    "variables": {
        "federation_id": 134,
        "timeout_seconds": 45
    }
}'

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="82def49c-1109-4e26-8014-af496a078732") — the "get_national_federation_details" function, which returns detailed information for a specific FEI National Federation from https://data.fei.org, including profile fields, contact details, leadership links, and the full member list across all member pages..

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