Get match entries for a team match
const url = 'https://internal.myscore.live/api/v1/api/v1/team-matches/tmm_abc123/entries';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://internal.myscore.live/api/v1/api/v1/team-matches/tmm_abc123/entriesPublic endpoint. Returns all singles/doubles entries for the team match, each with its underlying match, players, and court.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Example
tmm_abc123Team match ID
Responses
Section titled “ Responses ”Match entries
object
Entry ID
Parent team match ID
Underlying match ID once score entry begins (null until lineup is finalized)
Match type within the team match (singles or doubles)
Position within match type (1-based)
Assigned court ID, if any
Underlying match record once score entry begins
object
Match ID
Match lifecycle status
Set scores in chronological order
object
Games won by the home side in this set
Games won by the guest side in this set
Match notes (delays, incidents, etc.)
Winning side
Match outcome type
When the match result was confirmed
User who confirmed the match
When the match started
When the match was completed
When the match finished (alias of completedAt)
Record creation timestamp
Record last update timestamp
Server-computed winner suggestion from current sets + draw format rules. Null when score does not yet determine a winner. Read-only — distinct from confirmed winnerSide.
Players assigned to this entry from both sides
object
Side this player represents (home or guest)
Position within the side’s lineup (1-based)
Player ID
Player display name (snapshotted)
Example
[ { "id": "tme_abc123", "teamMatchId": "tmm_abc123", "matchId": "mtch_abc123", "matchType": "singles", "position": 1, "courtId": "crt_abc123", "match": { "id": "match_abc123", "status": "scheduled", "sets": [ { "home": 6, "guest": 4 } ], "notes": "Rain delay at 3-2", "winnerSide": "home", "outcome": "completed", "confirmedAt": "2026-01-15T15:30:00.000Z", "confirmedByUserId": "usr_abc123", "startedAt": "2026-01-15T14:00:00.000Z", "completedAt": "2026-01-15T15:25:00.000Z", "finishedAt": "2026-01-15T15:25:00.000Z", "createdAt": "2026-01-15T10:30:00Z", "updatedAt": "2026-01-15T11:00:00Z", "suggestedWinner": "home" }, "players": [ { "side": "home", "position": 1, "playerId": "plr_federer", "playerName": "Roger Federer" } ] }]Team match not found