Marketplace
No threads yet
Live

get_player_career_statistics

sports-reference.com

Returns career totals and season-by-season offensive statistics for a college football player from https://sports-reference.com.

Parameters1
Runs4
Updated1d ago
Operational4 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_career_statistics?

Returns career totals and season-by-season offensive statistics for a college football player from https://sports-reference.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_url and get the result back without maintaining a scraper.

Response

{
  "seasons": [
    {
      "season": "<string>",
      "passing": {},
      "scoring": {},
      "rushing_receiving": {}
    }
  ],
  "position": "<string>",
  "source_url": "<string>",
  "player_name": "<string>",
  "career_totals": {
    "passing": {},
    "scoring": {},
    "rushing_receiving": {}
  },
  "player_details": {},
  "rushing_receiving_order": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e40cb35d-60cb-4790-9a8a-5db8a88fc202/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e40cb35d-60cb-4790-9a8a-5db8a88fc202",
    "variables": {
        "player_url": "https://www.sports-reference.com/cfb/players/bo-nix-1.html"
    }
}'

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="e40cb35d-60cb-4790-9a8a-5db8a88fc202") — the "get_player_career_statistics" function, which returns career totals and season-by-season offensive statistics for a college football player from https://sports-reference.com..

It takes player_url (str). Return the result as structured JSON.