get_team_standings
nfl.comReturns NFL team standings from https://nfl.com for a selected season, season type, and week. Includes win-loss records, conference and division ranks, streaks, points for/against, and playoff clinch indicators for all teams.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_team_standings?
Returns NFL team standings from https://nfl.com for a selected season, season type, and week. Includes win-loss records, conference and division ranks, streaks, points for/against, and playoff clinch indicators for all teams. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass season, week, season_type, page_size and get the result back without maintaining a scraper.
Response
{
"week": 0,
"count": 0,
"season": 0,
"standings": [
{}
],
"seasonType": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/365309fa-acb6-4226-b410-9a5f86fb72d9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "365309fa-acb6-4226-b410-9a5f86fb72d9",
"variables": {
"season": 2025,
"week": 18,
"season_type": "REG",
"page_size": 100
}
}'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="365309fa-acb6-4226-b410-9a5f86fb72d9") — the "get_team_standings" function, which returns NFL team standings from https://nfl.com for a selected season, season type, and week. Includes win-loss records, conference and division ranks, streaks, points for/against, and playoff clinch indicators for all teams.. It takes season (int), week (int), season_type (str), page_size (int). Return the result as structured JSON.