Live
get_player_career_stats
fbref.comReturns player career statistics by season across all competitions from https://fbref.com, with nine requested category arrays and all available record fields.
Parameters1
Runs7
Updated3d ago
Degraded7 runs · 85.7% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_player_career_stats?
Returns player career statistics by season across all competitions from https://fbref.com, with nine requested category arrays and all available record fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id and get the result back without maintaining a scraper.
Response
{
"gca": [
{}
],
"defense": [
{}
],
"passing": [
{}
],
"shooting": [
{}
],
"standard": [
{}
],
"player_id": "<string>",
"pass_types": [
{}
],
"possession": [
{}
],
"player_name": "<string>",
"profile_url": "<string>",
"playing_time": [
{}
],
"miscellaneous": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/3d6f8bb8-1751-4ed3-92fb-c83404a25794/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3d6f8bb8-1751-4ed3-92fb-c83404a25794",
"variables": {
"player_id": "d70ce98e"
}
}'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="3d6f8bb8-1751-4ed3-92fb-c83404a25794") — the "get_player_career_stats" function, which returns player career statistics by season across all competitions from https://fbref.com, with nine requested category arrays and all available record fields.. It takes player_id (str). Return the result as structured JSON.