Get a specific athlete
This returns athlete details. It is a fast query with no analysis or calculated values.
Results are return in a standard format that supports paging. Although in this case only a single result value is expected.
API Endpoint
https://api.vo2master.com/api/organizations/{organization_id}/athletes/{athlete_id}
Example Response
{
"data": [{
"organization_id": "1",
"athlete_id": "1",
"created_at": "2025-01-01T09:00:00Z",
"modified_at": "2025-01-01T09:00:00Z",
"name": "Example Name",
"sex": "male",
"birth_date": "2001-01-01T12:00:00Z",
"weight": 100,
"height": 180,
"external_id": "1234567890",
"notes": "Custom notes"
}],
"page_number": 1,
"page_size": 1,
"total_pages": 1,
"total_records": 1,
"has_next_page": false,
"has_previous_page": false
}
Field | Example | Description |
|---|---|---|
athlete_id | 1 | Athlete ID |
organization_id | 1 | Organization ID |
created_at | 2025-01-01T09:00:00Z | Created time |
modified_at | 2025-01-01T09:00:00Z | Last modification time |
name | John Smith | Provided name of the athlete |
sex | male | male or female |
birth_date | 2001-01-01T12:00:00Z | Date of birth |
weight | 110 | Weight in kilograms |
height | 180 | Height in centimeters |
external_id | externalsys-123456 | External Id value |
notes | Custom notes |