Marketplace
No threads yet
Live

get_player_profile

ogol.com.br

Returns full player biographies from https://www.ogol.com.br with personal, physical, national-team, current-club, social, and relationship details.

Parameters1
Runs11
Updated3d ago
Degraded11 runs · 72.7% 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_profile?

Returns full player biographies from https://www.ogol.com.br with personal, physical, national-team, current-club, social, and relationship details. 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

{
  "age": 0,
  "sport": "<string>",
  "gender": "<string>",
  "full_name": "<string>",
  "height_cm": 0,
  "is_active": true,
  "photo_url": "<string>",
  "player_id": 0,
  "positions": [
    "<string>"
  ],
  "situation": "<string>",
  "weight_kg": 0,
  "birth_date": "<string>",
  "birthplace": "<string>",
  "profile_url": "<string>",
  "current_club": "<string>",
  "display_name": "<string>",
  "shirt_number": "<string>",
  "social_links": {},
  "birth_country": "<string>",
  "nationalities": [
    {
      "url": "<string>",
      "code": "<string>",
      "name": "<string>"
    }
  ],
  "relationships": [
    {
      "person_url": "<string>",
      "person_name": "<string>",
      "relationship": "<string>"
    }
  ],
  "preferred_foot": "<string>",
  "profile_season": 0,
  "current_club_id": 0,
  "current_club_url": "<string>",
  "birth_country_url": "<string>",
  "birth_country_code": "<string>",
  "national_team_caps": 0,
  "national_team_goals": 0,
  "current_club_country": "<string>",
  "current_club_logo_url": "<string>",
  "current_club_country_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e2137ed8-aebe-48b3-8cfb-93ce8342aafb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e2137ed8-aebe-48b3-8cfb-93ce8342aafb",
    "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="e2137ed8-aebe-48b3-8cfb-93ce8342aafb") — the "get_player_profile" function, which returns full player biographies from https://www.ogol.com.br with personal, physical, national-team, current-club, social, and relationship details..

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