Get schedule for a league group
const url = 'https://internal.myscore.live/api/v1/api/v1/league-groups/lgg_abc123/schedule';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/league-groups/lgg_abc123/schedulePublic endpoint. Returns scheduled team matches for a league group, filterable by match day, status and team.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Example
lgg_abc123League group ID
Query Parameters
Section titled “Query Parameters ”Filter by match day number
Filter by status (scheduled, in_progress, completed, cancelled)
Filter to matches involving this team (home or guest)
Responses
Section titled “ Responses ”League group schedule
object
Team match ID
League group ID
Home team ID
Guest team ID
Match day number within the season
Scheduled kickoff time
Free-text venue/location label
Number of singles matches
Number of doubles matches
Status (upcoming, in_progress, completed, cancelled)
Singles + doubles matches won by the home side
Singles + doubles matches won by the guest side
Home team summary
object
Team ID
Team display name
Guest team summary
object
Team ID
Team display name
Record creation timestamp
Record last update timestamp
Example
[ { "id": "tmm_abc123", "leagueGroupId": "lgr_abc123", "homeTeamId": "tem_home123", "guestTeamId": "tem_guest123", "matchDay": 3, "scheduledAt": "2026-04-15T14:00:00.000Z", "location": "TC Wimbledon, Centre Court complex", "singlesCount": 6, "doublesCount": 3, "status": "upcoming", "homeMatchesWon": 5, "guestMatchesWon": 4, "homeTeam": { "id": "tem_abc123", "name": "TC Musterstadt 1" }, "guestTeam": { "id": "tem_abc123", "name": "TC Musterstadt 1" }, "createdAt": "2026-03-01T12:00:00.000Z", "updatedAt": "2026-04-15T18:00:00.000Z" }]League group not found