Hole Statistics

Please note statistics are only available for events after the 16th June 2022.

This endpoint is a live websocket endpoint that returns the statistics for all holes, on a per round basis for a given tournament. Currently the whole hole stats event is sent whenever a new RoundDetails packet is received from either FlightScope of PGA.

The authentication token provided will be required to make a connection to this websocket endpoint.

Once you have the API token, any further data that you send over the connection will be ignored.

N.B – This endpoint sends heartbeats in-between data packets to let you know that it is still connected.

This endpoint currently takes no request parameters

This can be found at - wss://dde-streams.data.imgarena.com/golf/tournaments/{tournamentId}/holestats

Hole Statistics via RestAPI

Note that the hole statistics websockets is available via Rest - https://dde-api.data.imgarena.com/golf/tournaments/{tournamentId}/holestats?rest=true

Hole Stats

holeStats Object

Field
Definition
Data Type

SeqNum

Sequence number of the update packet

integer

holeStats

See object docs

array

timestamp

Time the update is sent

time

tournamentId

Tournament ID

The id of the tournament

{
  "holeStats": [** see object below **],
  "seqNum": 2082,
  "timestamp": "2025-02-16T23:24:58.869Z",
  "tournamentId": 1096
}

holeStats Array

Field
Definition
Data Type

holeNumber

Hole number

integer

parNumber

Par value for hole

integer

rounds

Hole statistics by round -view table below

array

total

Hole Statistics for the tournament -view table below

array

The hole statistics are returned at round level and tournament level. The full list of statistics and their definitions are as follows:

Statistic
Definition
Data type

averagePutts

Average amount of putts players take to hole out

integer

pars

Total pars on a hole

integer

birdies

Total birdies on a hole

integer

bogeys

Total bogeys on a hole

integer

doubleBogeysOrWorse

Total double bogeys or worse on a hole

integer

eaglesOrBetter

Total eagles or better on a hole

integer

fairwaysHit

Total number of times players hit the fairway on a hole from the tee shot

integer

greensHit

Total number of times players hit the green on a hole from the tee shot

integer

threePutts

Total three putts (or worse) on a hole

integer

timesPlayed

Total number of times the hole has been played by all players

integer

scoringAverage

The scoring average on the hole

integer

These statistics are outputted per hole, per round.

Sample output:

Last updated

Was this helpful?