Textual group stats for tournament, group number and round

This endpoint returns select stats for the group within the tournament with default written statements describing key event metrics

Endpoint URLs

https://dde-api.imggaming.com/golf/default-comments/{tournamentId}/{roundNumber}/{groupNo}/

URL Sample:

https://dde-api.imggaming.com/golf/default-comments/691/2/1/

Required Headers

Key

Value

Accept

application/vnd.imggaming.dde.api+json;version=1

Content-Type

application/json

Authorization

Bearer eyvhaoudfgpdfgo*

*Authorization header includes a truncated Bearer token, contact IMG for your auth token if you do not have.

Request Parameters

This endpoint currently takes no request parameters:

Response Model

Field Name

Type

Description

roundNumber

int

The current round of the tournament for this stat

rank

int

The rank of the player for this stat type vs peers in this tournament

sentence

string

A textual sentence describing a key stat metric

stat_rank

int

The rank of the stat

tournamentId

int

The internal ID of the tournament

rank_of_metrics

int

Where the metrics sit in terms of ranking

playerID

int

The internal ID of the Player of the current event

teamNumber

int

The internal team number of the group of players

Sample Response

[
  {
    "groupNo": 1,
    "playerId": 65,
    "rank_of_metrics": 4,
    "roundNumber": 2,
    "sentence": "Ranks 10th in Avoiding bunkers",
    "statrank": 10,
    "teamNumber": 129,
    "tournamentId": 691
  },
  {
    "groupNo": 1,
    "playerId": 92,
    "rank_of_metrics": 4,
    "roundNumber": 2,
    "sentence": "Ranks tied 20th in Avoiding bunkers",
    "statrank": 20,
    "teamNumber": 131,
    "tournamentId": 691
  },
  {
    "groupNo": 1,
    "playerId": 5907,
    "rank_of_metrics": 4,
    "roundNumber": 2,
    "sentence": "Ranks 13th in Strokes Gained Around the Green",
    "statrank": 13,
    "teamNumber": 91,
    "tournamentId": 691
  }
]

Last updated