get_team_roster
nfl.comReturns the current active roster for a selected team from https://nfl.com, including player names, numbers, positions, status, measurements, experience, college, images, and profile links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_team_roster?
Returns the current active roster for a selected team from https://nfl.com, including player names, numbers, positions, status, measurements, experience, college, images, and profile links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_slug and get the result back without maintaining a scraper.
Response
{
"season": 0,
"players": [
{}
],
"team_name": "<string>",
"team_slug": "<string>",
"source_url": "<string>",
"active_player_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c6c62012-b39d-4794-89bb-97d207bafd64/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c6c62012-b39d-4794-89bb-97d207bafd64",
"variables": {
"team_slug": "buffalo-bills"
}
}'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="c6c62012-b39d-4794-89bb-97d207bafd64") — the "get_team_roster" function, which returns the current active roster for a selected team from https://nfl.com, including player names, numbers, positions, status, measurements, experience, college, images, and profile links.. It takes team_slug (str). Return the result as structured JSON.