Skip to content

List championships

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

Public endpoint. Lists championships optionally filtered by federation.

federationId
string

Filter by parent federation ID

List of championships

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

Championship ID

string
federationId
required

Owning federation ID

string
name
required

Championship display name

string
season
required

Season label (e.g. summer, winter)

string
year
required

Year the championship runs in

string
createdAt
required

Record creation timestamp

string format: date-time
updatedAt
required

Record last update timestamp

string format: date-time
Example
[
{
"id": "chp_abc123",
"federationId": "fed_abc123",
"name": "Sommerrunde 2026",
"season": "summer",
"year": "2026",
"createdAt": "2026-03-01T12:00:00.000Z",
"updatedAt": "2026-03-01T12:00:00.000Z"
}
]

Rate limit exceeded