v1
latestOpenAPI 3.0.02026-07-14282938.4 KBAthletes
Get results of a specific athlete.
get/athletes/{athlete_id}/results
Path parameters
athlete_idstring required
The id of the athlete
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 the given athlete.
Example response
{
"items": [
{
"discipline": "100m",
"performance": "10.55",
"wind": "+1.2"
}
]
}