get_player_tournament_scorecard
europeantour.comReturns every completed round of a DP World Tour player's hole-by-hole tournament scorecard from https://www.europeantour.com, including stroke totals, score to par, penalties, and score classifications.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_player_tournament_scorecard?
Returns every completed round of a DP World Tour player's hole-by-hole tournament scorecard from https://www.europeantour.com, including stroke totals, score to par, penalties, and score classifications. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_id, player_id and get the result back without maintaining a scraper.
Response
{
"rounds": [
{
"holes": [
{
"strokes": 0,
"hole_number": 0,
"penalty_strokes": 0,
"is_amateur_score": true,
"score_class_code": "<string>",
"score_classification": "<string>"
}
],
"round_number": 0,
"score_to_par": 0,
"course_number": 0,
"total_strokes": 0,
"back_nine_strokes": 0,
"front_nine_strokes": 0
}
],
"event_id": 0,
"player_id": 0,
"last_updated": "<string>",
"total_penalty_strokes": 0,
"total_time_extensions_remaining": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/47c0dd51-2dec-40aa-86e7-ae7750b822bd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "47c0dd51-2dec-40aa-86e7-ae7750b822bd",
"variables": {
"event_id": 2026131,
"player_id": 40120
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="47c0dd51-2dec-40aa-86e7-ae7750b822bd") — the "get_player_tournament_scorecard" function, which returns every completed round of a DP World Tour player's hole-by-hole tournament scorecard from https://www.europeantour.com, including stroke totals, score to par, penalties, and score classifications.. It takes event_id (int), player_id (int). Return the result as structured JSON.