Get standings for a league group
GET
/api/v1/league-groups/{id}/standings
const url = 'https://internal.myscore.live/api/v1/api/v1/league-groups/lgg_abc123/standings';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/standingsPublic endpoint. Returns the standings table with full German tiebreaker cascade (table points, match points, sets, games).
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Example
lgg_abc123League group ID
Responses
Section titled “ Responses ”League group standings
Media type application/json
Array<object>
object
rank
required
Rank within the league group (1-based, after tiebreakers)
number
teamId
required
Team ID
string
teamName
required
Team display name
string
played
required
Number of team matches played
number
wins
required
Team matches won
number
draws
required
Team matches drawn
number
losses
required
Team matches lost
number
tablePoints
required
Table points (German tennis: 2 for a win, 1 for a draw)
number
matchPointsWon
required
Total individual matches won across all team matches
number
matchPointsLost
required
Total individual matches lost across all team matches
number
setsWon
required
Total sets won across all entries
number
setsLost
required
Total sets lost across all entries
number
gamesWon
required
Total games won across all entries
number
gamesLost
required
Total games lost across all entries
number
Example
[ { "rank": 1, "teamId": "tem_abc123", "teamName": "TC Musterstadt 1", "played": 8, "wins": 5, "draws": 1, "losses": 2, "tablePoints": 11, "matchPointsWon": 35, "matchPointsLost": 28, "setsWon": 75, "setsLost": 60, "gamesWon": 540, "gamesLost": 480 }]League group not found