v1

latestOpenAPI 3.0.02026-07-14282938.4 KB
Competitions

Retrieve a specific competition by ID.

get/competitions/{competition_id}

Path parameters

competition_idstring required

The competition identifier.

Response

A single competition.

idstring
namestring

The official name of the competition (e.g., 'ASICS NK Atletiek 2025').

datestring date

The start date of the competition.

countrystring
citystring
locationstring

Venue or stadium where the competition is held.

organizerstring

The organizing club or body.

start_timestring date-time
end_timestring date-time
participantsinteger
registration_status'Open' | 'Closed' | 'Full' | 'Not_Applicable'

Current status of athlete registration.

start_date_registrationsstring date-time
end_date_registrationsstring date-time
results_urlstring url

Direct link to the public results page for the competition.

descriptionstring

HTML-supported description.

Example response

{
  "id": "123",
  "name": "Avondmeeting",
  "date": "2025-11-28",
  "country": "BE",
  "city": "Brussels",
  "organizer": "AV Flevo Delta",
  "start_time": "2025-11-28T13:50:00+01:00",
  "end_time": "2025-11-28T17:30:00+01:00",
  "participants": 154,
  "registration_status": "Open",
  "start_date_registrations": "2025-11-28T12:00:00+01:00",
  "end_date_registrations": "2025-11-28T23:59:00+01:00"
}