Entrylist

This endpoint returns the list of teams/players who are going to play in any given tournament. The first list of players will be provided roughly two weeks before a tournament starts, and will be updated as and when players are added/drop out of the tournament. As with the other endpoints, there may be additional fields added, as this is a work in progress.

Endpoint URL

For all tournaments: https://dde-api.data.imgarena.com/golf/tournaments/{id}/entrylist

N.B – use ID 1 to return sample data.

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.

Rate Limits

5 req/sec measured over 5mins per calling service

Response Model

Entrylist Object

Field Name

Type

Description

teamId

int

The ID of that team for that tournament – stays unique for that team throughout the tournament.

players

list

List of the players within that team. Is strokeplay one team = one player

Players Object

Field Name

Type

Description

displayName

string

The display name of the player.

country

string

3-character FIFA Country Code.

IsAmateur

boolean

True if the player is an amateur.

lastName

string

The last name of the player.

firstName

string

The first name of the player.

status

string

Describes current player status in tournament. Possible values: Entered, Alternate, Playing, Withdrawn, Retired, Disqualified, MissedCut, Removed, Unknown.

playerId

int

The unique player ID of that player

Sample Response

[{
	"teamId": 1,
	"players": [{
		"displayName": "Henrik STENSON",
		"country": "SWE",
		"isAmateur": false,
		"lastName": "STENSON",
		"firstName": "Henrik",
		"status": "Alternate",
		"playerId": 398
	}]
}, {
	"teamId": 2,
	"players": [{
		"displayName": "Sergio GARCIA",
		"country": "ESP",
		"isAmateur": false,
		"lastName": "GARCIA",
		"firstName": "Sergio",
		"entryType": "Entered",
		"playerId": 274
	}]
}, {
	"teamId": 3,
	"players": [{
		"displayName": "Rory MCILROY",
		"country": "GBR",
		"isAmateur": false,
		"lastName": "MCILROY",
		"firstName": "Rory",
		"entryType": "Entered",
		"playerId": 285
	}]
}]

Last updated