Response Model

A map of competitionType -> Draw objects, populated with players where they are known.

The response format is the same as the one for the /tournaments/{id}/events endpoint - see here - except that the start time may not be available if we have not received that information.

Events Object (Tennis)

Field Name

Type

Description

eventId

string

Unique identifier for this event

date

date

Date the match was played or is scheduled to be played

matchType

string

string Code indicating the type of match: MS - Mens Singles, LS - Ladies Singles, MD - Mens Doubles, LD - Ladies Doubles, XD - Mixed Doubles. The above codes can be prefixed with โ€˜Qโ€™ to indicate they are part of qualifying for the competition

status

string

The current status of the match, one of: NotStarted, InProgress, Suspended, Finished

courtId

string

The identifier for the court the match is on. Note that this value is assigned by the ATPโ€™s software - it will likely not correlate with the actual court name

courtName

string

The name of the court the match is on

courtSeq

int

Defines the ordinal position of the match on this court. First match will have a value of 1, the second 2 etc.

teamA

object

Team Status object for the first team in the match

teamB

object

Team Status object for the second team in the match

startTime

object

startTime object indicating when the match is scheduled to start

startTimeText

string

Text description of the start time. Note that the start time object contains detailed information about the start and is likely to be more useful than this field

additionalText

string

Additional information about the match

bookingStatus

structure

Indicates if this event is booked. One of: โ€œBookedโ€, โ€œAutobookedโ€ or โ€NotBookedโ€

competitonId

string

Identifier for the competition - this is the year and the externalId

round

string

The round this event is being played in. In case of a qualifier event the round number is prepended with a โ€˜Qโ€™, like โ€œQ3โ€. Otherwise itโ€™s simply a number, e.g. โ€œ3โ€. The rounds work backwards, with 1 being the final, 2 being the semi-finals, 3 the quarters etc

globalCourtId

string

Unique Global court ID for the court. UTR events only

venueId

string

Unique Venue ID for the venue. UTR events only

Team status Object (Tennis)

Field Name

Type

Description

status

string

Indicates if the player detail is known for this team. Values are KnownTennisTeam or UnknownTennisTeam. For UnknownTennisTeam, no other fields will be present

team

object

A tennis team object

Team Object (Tennis)

Field Name

Type

Description

id

string

Unique identifier for this player as defined by the ATP/UTR

firstName

string

First name of the player

lastName

string

Last name of the player

country

string

IOC (Olympic) country code for the player

Start Time Object (Tennis)

Field Name

Type

Description

status

string

Indicates the type of information held for the start time.

StartsAt: The time in which the match is expected to start.

NotBefore: The time in which the match will not start before.

EstimatedStart: The time in which the match is estimated to start.

FollowsPrevious: The match will follow the previous match on the same court, therefore the time attributed with a 'Follows Previous' state is a rough estimate of the start time of that match.

NoInformation: No information available.

time

offset time

Contains either the start time for the match (generally if itโ€™s the first match of the day on a court) or the earliest time it could start (e.g. if there is a rain delay and they know play will not start until midday) or an estimate of the start time based on the start time of the previous match

Last updated