List a user's training prescriptions
Workouts planned for the user, most recent first, optionally restricted to a date range. Responds with 404 if the user does not exist or is not accessible to you.
Authorization
bearer Vekta api key, e.g. Authorization: Bearer vk_...
In: header
Path Parameters
Id of a user you have access to (see GET /users), or the special value me for the user owning the api key
Query Parameters
Inclusive start of the date range (YYYY-MM-DD)
dateInclusive end of the date range (YYYY-MM-DD)
dateResponse Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/users/me/training-prescriptions"[ { "id": "tpr_01JK4W2N9XQ3F5H7B8C6D2E9GT", "date": "2026-08-12", "time": "06:30:00", "title": "3 x 12 min threshold", "description": null, "sport": "cycling", "subSport": "road", "trainingStimulus": "threshold", "structure": [ { "type": "step", "label": "active", "intensity": { "vektaIntensity": "threshold", "zone": "Z4", "fromPower": "zone", "fromHeartRate": "zone", "minPower": 250, "maxPower": 280, "minPowerThresholdPercentage": 95, "maxPowerThresholdPercentage": 106, "minHeartRate": 160, "maxHeartRate": 172, "minMaxHeartRatePercentage": 85, "maxMaxHeartRatePercentage": 91, "minCadence": 85, "maxCadence": 95, "fromSpeed": "zone", "minSpeed": 3.6, "maxSpeed": 4.2, "minSpeedThresholdPercentage": 92, "maxSpeedThresholdPercentage": 104 }, "length": { "type": "free" } } ], "zonesType": "power", "distance": null, "duration": 4500, "freeDuration": 600, "elevationGain": null, "averagePower": 210, "work": 950, "calories": 980, "rpe": 7, "carbIntake": 60, "comment": null, "activityId": null }]Get an activity's streams GET
Recorded time series of an activity in column-oriented form: one array per field, aligned by index. Requests to this endpoint are only counted against the per api key rate limit. Responds with 404 if the activity does not exist, is not accessible to you, or has no streams.
List a user's notes GET
The user's notes, most recent first, optionally restricted to a date range. Notes hidden until a future date are only returned to their creator. Responds with 404 if the user does not exist or is not accessible to you.