Marketplace
No threads yet
Live

list_injury_reports

nfl.com

Returns league-wide or team-filtered NFL player injury reports from https://nfl.com with injuries, practice status, game status, matchup context, and profile links.

Parameters4
Runs7
Updated3d ago
Operational7 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 list_injury_reports?

Returns league-wide or team-filtered NFL player injury reports from https://nfl.com with injuries, practice status, game status, matchup context, and profile links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team, season, season_type, week and get the result back without maintaining a scraper.

Response

{
  "week": 0,
  "count": 0,
  "season": 0,
  "message": "<string>",
  "reports": [
    {}
  ],
  "source_url": "<string>",
  "season_type": "<string>",
  "team_filter": "<string>",
  "used_latest_available_fallback": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e05a53aa-1a00-4b66-98ed-8a142b205aff/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e05a53aa-1a00-4b66-98ed-8a142b205aff",
    "variables": {
        "team": "",
        "season": 0,
        "season_type": "",
        "week": 0
    }
}'

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="e05a53aa-1a00-4b66-98ed-8a142b205aff") — the "list_injury_reports" function, which returns league-wide or team-filtered NFL player injury reports from https://nfl.com with injuries, practice status, game status, matchup context, and profile links..

It takes team (str), season (int), season_type (str), week (int). Return the result as structured JSON.