Marketplace
No threads yet
Live

get_team_roster

maxpreps.com

Gets a team roster for a selected season from https://maxpreps.com. Returns active player records with identifiers, jersey numbers, positions, measurements, grades, photos, and athlete-profile links.

Parameters4
Runs11
Updated10d ago
Operational11 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_team_roster?

Gets a team roster for a selected season from https://maxpreps.com. Returns active player records with identifiers, jersey numbers, positions, measurements, grades, photos, and athlete-profile links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass school_path, sport, season, team_level and get the result back without maintaining a scraper.

Response

{
  "sport": "<string>",
  "season": "<string>",
  "players": [
    {}
  ],
  "team_id": "<string>",
  "school_id": "<string>",
  "team_name": "<string>",
  "roster_url": "<string>",
  "team_level": "<string>",
  "school_name": "<string>",
  "player_count": 0,
  "sport_season_id": "<string>",
  "source_player_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/71fc4c05-3bc9-49b2-b7d5-6e94b3ab6ae3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "71fc4c05-3bc9-49b2-b7d5-6e94b3ab6ae3",
    "variables": {
        "school_path": "/nv/las-vegas/bishop-gorman-gaels/",
        "sport": "football",
        "season": "25-26",
        "team_level": "varsity"
    }
}'

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="71fc4c05-3bc9-49b2-b7d5-6e94b3ab6ae3") — the "get_team_roster" function, which gets a team roster for a selected season from https://maxpreps.com. Returns active player records with identifiers, jersey numbers, positions, measurements, grades, photos, and athlete-profile links..

It takes school_path (str), sport (str), season (str), team_level (str). Return the result as structured JSON.