Marketplace
No threads yet
Live

get_dp_world_tour_player_round_statistics

europeantour.com

Returns detailed round-by-round DP World Tour performance statistics from https://www.europeantour.com, including each player's driving, greens, putting, scrambling, scoring, field averages, and field-relative ranks.

Parameters2
Runs9
Updated10d ago
Operational9 runs · 100% 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_dp_world_tour_player_round_statistics?

Returns detailed round-by-round DP World Tour performance statistics from https://www.europeantour.com, including each player's driving, greens, 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": [
    {
      "event_id": 0,
      "player_id": 0,
      "round_number": 0,
      "total_strokes": 0,
      "putts_per_round": 0,
      "scrambles_percent": 0,
      "scrambles_field_rank": 0,
      "driving_distance_yards": 0,
      "scrambles_field_average": 0,
      "driving_accuracy_percent": 0,
      "total_strokes_field_rank": 0,
      "putts_per_round_field_rank": 0,
      "driving_accuracy_field_rank": 0,
      "driving_distance_field_rank": 0,
      "total_strokes_field_average": 0,
      "greens_in_regulation_percent": 0,
      "putts_per_green_in_regulation": 0,
      "putts_per_round_field_average": 0,
      "driving_accuracy_field_average": 0,
      "greens_in_regulation_field_rank": 0,
      "greens_in_regulation_field_average": 0,
      "driving_distance_field_average_yards": 0,
      "putts_per_green_in_regulation_field_rank": 0,
      "putts_per_green_in_regulation_field_average": 0
    }
  ],
  "event_id": 0,
  "player_id": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/af01531f-44f5-4de5-ab3e-4f1939f2c9d1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "af01531f-44f5-4de5-ab3e-4f1939f2c9d1",
    "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="af01531f-44f5-4de5-ab3e-4f1939f2c9d1") — the "get_dp_world_tour_player_round_statistics" function, which returns detailed round-by-round DP World Tour performance statistics from https://www.europeantour.com, including each player's driving, greens, putting, scrambling, scoring, field averages, and field-relative ranks..

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