Marketplace
No threads yet
Live

get_player_career_statistics

ogol.com.br

Returns season-by-season club and national-team career statistics for a player from https://www.ogol.com.br, including squad levels, games, goals, assists, links, and totals.

Parameters1
Runs6
Updated3d ago
Failing6 runs · 83.3% 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 season-by-season club and national-team career statistics for a player from https://www.ogol.com.br, including squad levels, games, goals, assists, links, and totals. 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

{
  "player_id": 0,
  "player_name": "<string>",
  "profile_url": "<string>",
  "career_totals": {
    "games": 0,
    "goals": 0,
    "assists": 0
  },
  "career_records": [
    {
      "club": "<string>",
      "games": 0,
      "goals": 0,
      "season": "<string>",
      "assists": 0,
      "club_id": 0,
      "club_url": "<string>",
      "season_id": 0,
      "details_url": "<string>",
      "squad_level": "<string>",
      "country_code": "<string>",
      "statistics_confirmed": true
    }
  ],
  "career_record_count": 0,
  "career_statistics_url": "<string>",
  "national_team_records": [
    {
      "games": 0,
      "goals": 0,
      "group": "<string>",
      "assists": 0,
      "details_url": "<string>",
      "squad_level": "<string>",
      "country_code": "<string>",
      "national_team": "<string>",
      "national_team_id": 0,
      "national_team_url": "<string>",
      "statistics_confirmed": true
    }
  ],
  "national_team_group_totals": [
    {
      "games": 0,
      "goals": 0,
      "group": "<string>",
      "assists": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f0ce7b6f-b2a9-4b31-9d5a-8f2ed38f0085/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f0ce7b6f-b2a9-4b31-9d5a-8f2ed38f0085",
    "variables": {
        "player_id": 86678
    }
}'

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="f0ce7b6f-b2a9-4b31-9d5a-8f2ed38f0085") — the "get_player_career_statistics" function, which returns season-by-season club and national-team career statistics for a player from https://www.ogol.com.br, including squad levels, games, goals, assists, links, and totals..

It takes player_id (int). Return the result as structured JSON.