Marketplace
No threads yet
Live

get_nfl_league_salary_cap_summary

spotrac.com

Gets the league-wide NFL salary cap summary from https://spotrac.com for a selected year and cap metric column. Returns all 32 teams with rank, abbreviation, metric value, and the source column name currently displayed.

Parameters3
Runs10
Updated8d ago
Operational10 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_nfl_league_salary_cap_summary?

Gets the league-wide NFL salary cap summary from https://spotrac.com for a selected year and cap metric column. Returns all 32 teams with rank, abbreviation, metric value, and the source column name currently displayed. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year, metric, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "teams": [
    {
      "rank": 0,
      "abbreviation": "<string>",
      "metric_value": "<string>"
    }
  ],
  "source": "<string>",
  "metric_column_id": "<string>",
  "metric_column_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/feedd3ba-7188-4548-b173-3a95bdc1d1e5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "feedd3ba-7188-4548-b173-3a95bdc1d1e5",
    "variables": {
        "year": 2026,
        "metric": "cap_maximum_space2",
        "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="feedd3ba-7188-4548-b173-3a95bdc1d1e5") — the "get_nfl_league_salary_cap_summary" function, which gets the league-wide NFL salary cap summary from https://spotrac.com for a selected year and cap metric column. Returns all 32 teams with rank, abbreviation, metric value, and the source column name currently displayed..

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