Marketplace
No threads yet
Live

get_league_cash_spending

spotrac.com

Returns the league-wide NFL cash spending summary for a season from https://spotrac.com, including rank, record, signed players, average age, active cash, dead cash, and total cash for all 32 teams.

Parameters2
Runs6
Updated3d ago
Operational6 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_league_cash_spending?

Returns the league-wide NFL cash spending summary for a season from https://spotrac.com, including rank, record, signed players, average age, active cash, dead cash, and total cash for all 32 teams. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "year": 0,
  "teams": [
    {
      "rank": 0,
      "record": "<string>",
      "dead_cash": 0,
      "total_cash": 0,
      "active_cash": 0,
      "average_age": 0,
      "abbreviation": "<string>",
      "signed_player_count": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e06c8435-df9d-47c0-b0fe-c356757dc8e8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e06c8435-df9d-47c0-b0fe-c356757dc8e8",
    "variables": {
        "year": 2026,
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="e06c8435-df9d-47c0-b0fe-c356757dc8e8") — the "get_league_cash_spending" function, which returns the league-wide NFL cash spending summary for a season from https://spotrac.com, including rank, record, signed players, average age, active cash, dead cash, and total cash for all 32 teams..

It takes year (int), timeout_seconds (int). Return the result as structured JSON.