Skip to content

List teams

GET
/api/v1/teams
curl --request GET \
--url https://internal.myscore.live/api/v1/api/v1/teams

Public endpoint. Lists teams with optional filters by club, league group, or fuzzy name search.

clubId
string

Filter by owning club

leagueGroupId
string

Filter by league group assignment

search
string

Case-insensitive search by team name

List of teams

Media type application/json
Array<object>
object
id
required

Team ID

string
clubId
required

Owning club ID

string
leagueGroupId
required

League group this team competes in

string
name
required

Team display name

string
createdAt
required

Record creation timestamp

string format: date-time
updatedAt
required

Record last update timestamp

string format: date-time
Example
[
{
"id": "tem_abc123",
"clubId": "clb_abc123",
"leagueGroupId": "lgr_abc123",
"name": "TC Musterstadt 1",
"createdAt": "2026-03-01T12:00:00.000Z",
"updatedAt": "2026-03-01T12:00:00.000Z"
}
]

Rate limit exceeded