get_dp_world_tour_player_tournament_round_statistics
europeantour.comRetrieves detailed statistics for every completed tournament round played by a DP World Tour player from https://www.europeantour.com. Returns driving, greens-in-regulation, putting, scrambling, scoring, field averages, and field-relative ranks.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_dp_world_tour_player_tournament_round_statistics?
Retrieves detailed statistics for every completed tournament round played by a DP World Tour player from https://www.europeantour.com. Returns driving, greens-in-regulation, putting, scrambling, scoring, field averages, and field-relative ranks. 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": [
{
"strokes": 0,
"event_id": 0,
"round_no": 0,
"player_id": 0,
"putts_per_gir": 0,
"scrambles_pct": 0,
"putts_per_round": 0,
"strokes_field_rank": 0,
"driving_accuracy_pct": 0,
"scrambles_field_rank": 0,
"strokes_field_average": 0,
"driving_distance_yards": 0,
"greens_in_regulation_pct": 0,
"putts_per_gir_field_rank": 0,
"putts_per_round_field_rank": 0,
"driving_accuracy_field_rank": 0,
"driving_distance_field_rank": 0,
"putts_per_gir_field_average": 0,
"scrambles_field_average_pct": 0,
"putts_per_round_field_average": 0,
"greens_in_regulation_field_rank": 0,
"driving_accuracy_field_average_pct": 0,
"driving_distance_field_average_yards": 0,
"greens_in_regulation_field_average_pct": 0
}
],
"event_id": 0,
"player_id": 0,
"scorecard_last_updated": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3c8444c7-556c-44bd-9239-4102ea2aedac/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3c8444c7-556c-44bd-9239-4102ea2aedac",
"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="3c8444c7-556c-44bd-9239-4102ea2aedac") — the "get_dp_world_tour_player_tournament_round_statistics" function, which retrieves detailed statistics for every completed tournament round played by a DP World Tour player from https://www.europeantour.com. Returns driving, greens-in-regulation, putting, scrambling, scoring, field averages, and field-relative ranks.. It takes event_id (int), player_id (int). Return the result as structured JSON.