get_nfl_team_cap_cash_summary
spotrac.comGets an NFL team's cap maximum summary and cash totals summary for a season from https://spotrac.com by reading both the cap and cash pages. Returns non-empty cap breakdown and cash category totals with all available bonus columns.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_nfl_team_cap_cash_summary?
Gets an NFL team's cap maximum summary and cash totals summary for a season from https://spotrac.com by reading both the cap and cash pages. Returns non-empty cap breakdown and cash category totals with all available bonus columns. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_slug, year, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"team": "<string>",
"source": "<string>",
"cash_summary": [
{}
],
"cap_maximum_summary": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/f1a6df76-7213-4c07-afbc-2cb8e5d33679/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f1a6df76-7213-4c07-afbc-2cb8e5d33679",
"variables": {
"team_slug": "buffalo-bills",
"year": 2025,
"timeout_seconds": 30
}
}'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="f1a6df76-7213-4c07-afbc-2cb8e5d33679") — the "get_nfl_team_cap_cash_summary" function, which gets an NFL team's cap maximum summary and cash totals summary for a season from https://spotrac.com by reading both the cap and cash pages. Returns non-empty cap breakdown and cash category totals with all available bonus columns.. It takes team_slug (str), year (int), timeout_seconds (int). Return the result as structured JSON.