Marketplace
No threads yet
Live

get_player_match_log

ogol.com.br

Returns season-specific player match logs and competition summaries from https://www.ogol.com.br, including minutes, events, results, selection status, cards, and totals.

Parameters2
Runs9
Updated3d ago
Degraded9 runs · 66.6% 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_match_log?

Returns season-specific player match logs and competition summaries from https://www.ogol.com.br, including minutes, events, results, selection status, cards, 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, season and get the result back without maintaining a scraper.

Response

{
  "notes": [
    "<string>"
  ],
  "season": 0,
  "matches": [
    {
      "club": "<string>",
      "date": "<string>",
      "goals": 0,
      "round": "<string>",
      "score": "<string>",
      "rating": 0,
      "result": "<string>",
      "status": "<string>",
      "assists": 0,
      "club_id": 0,
      "game_id": 0,
      "club_url": "<string>",
      "game_url": "<string>",
      "news_url": "<string>",
      "opponent": "<string>",
      "home_away": "<string>",
      "red_cards": 0,
      "edition_id": 0,
      "photos_url": "<string>",
      "videos_url": "<string>",
      "competition": "<string>",
      "edition_url": "<string>",
      "opponent_id": 0,
      "edition_name": "<string>",
      "opponent_url": "<string>",
      "yellow_cards": 0,
      "competition_id": 0,
      "home_away_code": "<string>",
      "minutes_played": 0,
      "competition_url": "<string>",
      "competition_code": "<string>",
      "competition_country": "<string>",
      "substituted_on_minute": 0,
      "substituted_off_minute": 0
    }
  ],
  "player_id": 0,
  "season_id": 0,
  "data_status": "<string>",
  "match_count": 0,
  "matches_url": "<string>",
  "player_name": "<string>",
  "profile_url": "<string>",
  "resumo_totals": {
    "total": {
      "wins": 0,
      "draws": 0,
      "games": 0,
      "goals": 0,
      "losses": 0,
      "starts": 0,
      "assists": 0,
      "minutes": 0,
      "own_goals": 0,
      "red_cards": 0,
      "competition": "<string>",
      "details_url": "<string>",
      "country_code": "<string>",
      "yellow_cards": 0,
      "competition_id": 0,
      "goal_difference": "<string>",
      "second_yellow_cards": 0,
      "substitute_appearances": 0
    },
    "by_competition": [
      {
        "wins": 0,
        "draws": 0,
        "games": 0,
        "goals": 0,
        "losses": 0,
        "starts": 0,
        "assists": 0,
        "minutes": 0,
        "own_goals": 0,
        "red_cards": 0,
        "competition": "<string>",
        "details_url": "<string>",
        "country_code": "<string>",
        "yellow_cards": 0,
        "competition_id": 0,
        "goal_difference": "<string>",
        "second_yellow_cards": 0,
        "substitute_appearances": 0
      }
    ],
    "header_aggregates": {
      "games": 0,
      "goals": 0,
      "starters": 0,
      "goals_per_game": 0
    },
    "season_aggregates": {
      "games": 0,
      "goals": 0,
      "starters": 0,
      "goals_per_game": 0
    }
  },
  "page_season_label": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/38b56cb4-a83a-4b22-b32f-7ac202c672ba/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "38b56cb4-a83a-4b22-b32f-7ac202c672ba",
    "variables": {
        "player_id": 86678,
        "season": 2026
    }
}'

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="38b56cb4-a83a-4b22-b32f-7ac202c672ba") — the "get_player_match_log" function, which returns season-specific player match logs and competition summaries from https://www.ogol.com.br, including minutes, events, results, selection status, cards, and totals..

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