search_figure_skating_athletes
isu-skating.comSearches individual figure skaters and pair or ice dance teams by athlete name in the official https://isu-skating.com database. Returns all non-empty athlete and team fields and automatically follows every result page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_figure_skating_athletes?
Searches individual figure skaters and pair or ice dance teams by athlete name in the official https://isu-skating.com database. Returns all non-empty athlete and team fields and automatically follows every result page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"results": [
{}
],
"total_items": 0,
"pages_fetched": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/dee73e4e-0e34-471c-b8ec-de5d7758048a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "dee73e4e-0e34-471c-b8ec-de5d7758048a",
"variables": {
"query": "Brown"
}
}'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="dee73e4e-0e34-471c-b8ec-de5d7758048a") — the "search_figure_skating_athletes" function, which searches individual figure skaters and pair or ice dance teams by athlete name in the official https://isu-skating.com database. Returns all non-empty athlete and team fields and automatically follows every result page.. It takes query (str). Return the result as structured JSON.