Marketplace
No threads yet
Live

get_player_statistics

nfl.com

Returns full-season NFL player statistics from https://nfl.com for a selected stat category and season. Includes every non-empty field exposed per player record, with category-specific stat columns and optional player profile details.

Parameters7
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_player_statistics?

Returns full-season NFL player statistics from https://nfl.com for a selected stat category and season. Includes every non-empty field exposed per player record, with category-specific stat columns and optional player profile details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, season, season_type, sort_stat, page_size, max_records, include_player_profile and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "season": 0,
  "players": [
    {}
  ],
  "category": "<string>",
  "sortStat": "<string>",
  "seasonType": "<string>",
  "apiCategory": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3ff40c74-0011-4cfc-827c-a958b68f0d15/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3ff40c74-0011-4cfc-827c-a958b68f0d15",
    "variables": {
        "category": "passing",
        "season": 2025,
        "season_type": "REG",
        "sort_stat": "",
        "page_size": 200,
        "max_records": 0,
        "include_player_profile": true
    }
}'

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="3ff40c74-0011-4cfc-827c-a958b68f0d15") — the "get_player_statistics" function, which returns full-season NFL player statistics from https://nfl.com for a selected stat category and season. Includes every non-empty field exposed per player record, with category-specific stat columns and optional player profile details..

It takes category (str), season (int), season_type (str), sort_stat (str), page_size (int), max_records (int), include_player_profile (bool). Return the result as structured JSON.