Player Statistics

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

This endpoint is a live websocket endpoint that returns the full set up player hole statistics for all rounds in a given tournament. Currently the whole player 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

Endpoint URL

wss://dde-streams.data.imgarena.com/golf/tournaments/{tournamentId}/playerstats

Note that the playerstats websocket is available via a RestAPI -

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

Full list of Hole stats for each player

  • Holes

    • drivingDistance

    • fairway

    • gir

    • holeNo

    • holedPuttDistance

    • bunker

    • putts

    • rough

Player Hole Stats

Playerstats Object

Field
Definition
Data Type

SeqNum

Sequence number of the update packet

integer

teamsStatistics

see object docs

object

timestamp

Time the update is sent

time

tournamentId

tournament ID

The id of the tournament

teamsStatistics Object

Field
Definition
Data Type

players

see object docs

object

teamsStatistics

see object docs

object

teamId

team id for the player

integer

players Object

Field Name

Type

Description

displayName

string

Name of the player

Country

string

Country of the player

isAmateur

boolean

True if player is an amateur

lastName

string

Last name

firstName

string

First name

gender

string

gender of player

id

integer

Player ID

holeStatistics Object

There is a subset of player stats that provides per round information about the player's performance on a limited number of statistics. These are as follows:

Field
Definition
Data Type

holeNo

The number of the hole

integer

gir

Did the player make a Greens in Regulation. Defined as finding the Green or Hole on or before the (n-2)th stroke.

boolean

holedPuttDistance

From what distance did a player hole out

float

fairway

Did the player hit the fairway from the teeshot

boolean

drivingDistance

Driving distance

float

bunker

Did the player hit the bunker

boolean

rough

Did the player hit the rough

boolean

putts

Number of putts to hole the ball

integer

teamsStatistics sample json output:

Last updated

Was this helpful?