Marketplace
No threads yet
Live

get_nfl_player_contract_details

spotrac.com

Retrieves detailed NFL player contract and salary data from https://spotrac.com, including cap hit, base salary, bonuses, dead cap, contract notes, and year-by-year tables.

Parameters2
Runs9
Updated8d ago
Operational9 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_player_contract_details?

Retrieves detailed NFL player contract and salary data from https://spotrac.com, including cap hit, base salary, bonuses, dead cap, contract notes, and year-by-year tables. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_name, player_slug and get the result back without maintaining a scraper.

Response

{
  "team": "<string>",
  "source": "<string>",
  "tables": [
    {}
  ],
  "position": "<string>",
  "player_id": 0,
  "player_name": "<string>",
  "player_slug": "<string>",
  "profile_url": "<string>",
  "contract_notes": [
    "<string>"
  ],
  "profile_fields": {},
  "headline_values": {},
  "contract_summary": {},
  "requested_player_name": "<string>",
  "requested_player_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/615771f2-f04d-4531-a59d-5d110f6461f9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "615771f2-f04d-4531-a59d-5d110f6461f9",
    "variables": {
        "player_name": "Deshaun Watson",
        "player_slug": ""
    }
}'

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="615771f2-f04d-4531-a59d-5d110f6461f9") — the "get_nfl_player_contract_details" function, which retrieves detailed NFL player contract and salary data from https://spotrac.com, including cap hit, base salary, bonuses, dead cap, contract notes, and year-by-year tables..

It takes player_name (str), player_slug (str). Return the result as structured JSON.