get_player_tournament_scorecard
europeantour.comRetrieves a DP World Tour player's completed-round hole-by-hole tournament scorecard from https://www.europeantour.com. Returns every hole's strokes and score classification plus front-nine, back-nine, total strokes, and score to par for each round.
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?
Retrieves a DP World Tour player's completed-round hole-by-hole tournament scorecard from https://www.europeantour.com. Returns every hole's strokes and score classification plus front-nine, back-nine, total strokes, and score to par for each round. 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": [
{
"hole_no": 0,
"penalty": 0,
"strokes": 0,
"is_am_score": true,
"score_class_code": "<string>",
"score_classification": "<string>"
}
],
"strokes": 0,
"round_no": 0,
"course_no": 0,
"strokes_in": 0,
"strokes_out": 0,
"score_to_par": 0,
"back_nine_strokes": 0,
"front_nine_strokes": 0
}
],
"event_id": 0,
"player_id": 0,
"last_updated": "<string>",
"total_penalty": 0,
"total_time_extensions_remaining": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/988e27e4-84c0-4203-871d-40e38ef1b6c7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "988e27e4-84c0-4203-871d-40e38ef1b6c7",
"variables": {
"event_id": 2025131,
"player_id": 42781
}
}'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="988e27e4-84c0-4203-871d-40e38ef1b6c7") — the "get_player_tournament_scorecard" function, which retrieves a DP World Tour player's completed-round hole-by-hole tournament scorecard from https://www.europeantour.com. Returns every hole's strokes and score classification plus front-nine, back-nine, total strokes, and score to par for each round.. It takes event_id (int), player_id (int). Return the result as structured JSON.