search_team_tournaments
fotball.noSearches https://fotball.no for tournaments associated with a Norwegian football club registration in a selected season. Returns the matched registration plus tournament names, URLs, and slugs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_team_tournaments?
Searches https://fotball.no for tournaments associated with a Norwegian football club registration in a selected season. Returns the matched registration plus tournament names, URLs, and slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_name, season and get the result back without maintaining a scraper.
Response
{
"count": 0,
"season": 0,
"season_id": 0,
"team_name": "<string>",
"tournaments": [
{
"url": "<string>",
"name": "<string>",
"slug": "<string>"
}
],
"matched_club": {
"name": "<string>",
"club_id": 0,
"district_id": 0
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/d258587e-ce60-4539-a92c-9e73a47b7957/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d258587e-ce60-4539-a92c-9e73a47b7957",
"variables": {
"team_name": "Rosenborg",
"season": 2026
}
}'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="d258587e-ce60-4539-a92c-9e73a47b7957") — the "search_team_tournaments" function, which searches https://fotball.no for tournaments associated with a Norwegian football club registration in a selected season. Returns the matched registration plus tournament names, URLs, and slugs.. It takes team_name (str), season (int). Return the result as structured JSON.