v1

latestOpenAPI 3.0.02026-07-14282938.4 KB
Clubs

Get recent results for all athletes of a club.

Retrieve the latest competition results for every athlete of a club in one paginated, server-sorted call. Mirrors the filter vocabulary of GET /athletes/{athlete_id}/results.

get/clubs/{club_id}/results

Path parameters

club_idstring required

The club identifier.

Query parameters

seasoninteger

Athletics season

disciplinestring

The specific track and field discipline (e.g., 100m, Javelin).

locationstring

Location of the competition.

date_fromstring date

Get all results after this date.

date_tostring date

Get all results before this date.

pageinteger

Page number of query.

limitinteger

Max amount of results per page.

sort'date_asc' | 'date_desc'

Sort by result date (date_asc oldest first, date_desc newest first).

Response

A paginated list of results for all athletes of the club.

Example response

{
  "items": [
    {
      "discipline": "100m",
      "performance": "10.55",
      "wind": "+1.2",
      "athlete": {
        "id": "A123",
        "first_name": "John",
        "last_name": "Doe",
        "bib_number": 123
      }
    }
  ]
}