Get a specific athlete session.
This returns athlete session 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}/sessions/{session_id}
Example Response
{
"data": [{
"session_id": "1",
"athlete_id": "1",
"organization_id": "1",
"created_at": "2025-01-01T09:00:00Z",
"modified_at": "2025-01-01T09:00:00Z",
"name": "Example Name",
"activity_type": "running",
"start_time": "2025-01-01T09:00:00Z",
"end_time": "2025-01-01T09:33:00Z",
"athlete_weight": 80,
"athlete_height": 181,
"protocol_type": "stepTest",
"protocol_sub_type": "none"
}],
"page_number": 1,
"page_size": 1,
"total_pages": 1,
"total_records": 1,
"has_next_page": false,
"has_previous_page": false
}
Field | Example | Description |
|---|---|---|
session_id | 1 | Session ID |
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 | Name of session | Provided name of the session |
start_time | 2025-01-01T09:00:00Z | Session start time |
end_time | 2025-01-01T09:33:00Z | Session end time |
athlete_weight | 80 | Weight of the athlete at the time of recording the session in kilograms. |
athlete_height | 181 | Height of the athlete at the time of recording the session in centimeters. |
protocol_type | stepTest | Protocol Type.
|
protocol_sub_type | none | Protocol Subtype.
|
activity_type | running | Activity Type
|