Live
get_player_profile
kooora.comReturns a football player profile from https://kooora.com with identity, position, age, nationality, current team, images, and complete competition-by-season career records.
Parameters1
Runs7
Updated3d ago
Operational7 runs · 100% 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_profile?
Returns a football player profile from https://kooora.com with identity, position, age, nationality, current team, images, and complete competition-by-season career records. 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": {},
"career_entry_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/f50c714c-919f-49f0-9245-48a412c7dcc3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f50c714c-919f-49f0-9245-48a412c7dcc3",
"variables": {
"player_id": "DEFAULT_PLAYER_ID"
}
}'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="f50c714c-919f-49f0-9245-48a412c7dcc3") — the "get_player_profile" function, which returns a football player profile from https://kooora.com with identity, position, age, nationality, current team, images, and complete competition-by-season career records.. It takes player_id (str). Return the result as structured JSON.