Get league group by ID
GET
/api/v1/league-groups/{id}
const url = 'https://internal.myscore.live/api/v1/api/v1/league-groups/lgg_abc123';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_abc123Public endpoint. Returns a single league group including the parent league.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Example
lgg_abc123League group ID
Responses
Section titled “ Responses ”League group details
Media type application/json
object
id
required
League group ID
string
leagueId
required
Parent league ID
string
name
required
League group name
string
createdAt
required
Record creation timestamp
string format: date-time
updatedAt
required
Record last update timestamp
string format: date-time
league
Parent league snapshot
object
id
required
League ID
string
championshipId
required
Parent championship ID
string
name
required
League name
string
category
required
League category (active, youth, senior)
string
gender
Gender restriction (male, female, mixed)
string
ageGroup
Age group label (e.g. Open, U18, 50+)
string
tier
Tier within the championship (1 = top division)
number
defaultSinglesCount
required
Default number of singles matches per team match
number
defaultDoublesCount
required
Default number of doubles matches per team match
number
defaultMatchFormat
Default match format
string
defaultMatchTiebreakTo
Default match-tiebreak target points
number
createdAt
required
Record creation timestamp
string format: date-time
updatedAt
required
Record last update timestamp
string format: date-time
Example
{ "id": "lgr_abc123", "leagueId": "lea_abc123", "name": "Bezirksliga Gruppe A", "createdAt": "2026-03-01T12:00:00.000Z", "updatedAt": "2026-03-01T12:00:00.000Z", "league": { "id": "lea_abc123", "championshipId": "chp_abc123", "name": "Bezirksliga", "category": "active", "gender": "male", "ageGroup": "Open", "tier": 1, "defaultSinglesCount": 6, "defaultDoublesCount": 3, "defaultMatchFormat": "best_of_3_mtb", "defaultMatchTiebreakTo": 10, "createdAt": "2026-03-01T12:00:00.000Z", "updatedAt": "2026-03-01T12:00:00.000Z" }}League group not found