Get the mean-max power curve
/v1/athletes/{athlete_id}/power-curverequires activities.readBest average power for every duration from one second to two hours over a window, each point carrying its change against a comparison window.
fatigue_curves is the durability picture: best power sustained *after* the athlete had already done 10, 20, 30, 40 or 50 kJ/kg of work. Comparing a fatigue curve to the fresh curve at the same duration is how you assess whether an athlete holds power deep into long rides.
The comparison window defaults to the equally long period immediately before the primary one, which is what a coach means by "versus last block". Power curves are a cycling concept, so this defaults to RIDE.
Path parameters
athlete_idstringrequiredThe athlete to act on. `me` is the athlete who authorized this token; any other ID must be an athlete they coach.
Query parameters
startstringStart of the window, as RFC 3339 or YYYY-MM-DD. May be in the future.
e.g. 2026-08-01
endstringEnd of the window, as RFC 3339 or YYYY-MM-DD. May be in the future, to include planned sessions.
e.g. 2026-09-01
comparison_startstringStart of the window to compare against. Defaults to the equally long period immediately before the primary window.
comparison_endstringEnd of the comparison window. Defaults to the start of the primary window.
activity_typeenumRestrict to one sport. Defaults to RIDE.
GENERIC · RUN · RIDE · SWIM · STRENGTH · YOGA · WALK · HIKE · SKI
include_heart_ratebooleanInclude the matching mean-max heart rate curve.
full_curvebooleanReturn every recorded window instead of the curated set of key durations. Verbose; only worth it when you need the exact shape of the curve.
Example
curl -X GET "https://api.stride.is/v1/athletes/{athlete_id}/power-curve" \
-H "Authorization: Bearer $STRIDE_TOKEN"Response 200
Success.
activity_typestringalways presentcomparison_windowstringfatigue_curvesobject[]kjnumberkj_per_kgnumberalways presentpointsobject[]always presentactivity_idstringcomparison_wattsintegerdelta_percentnumberdelta_wattsintegerdurationstringalways presentimproved_on_comparisonbooleanoffset_secondsintegersecondsintegeralways presentwattsintegeralways presentwatts_per_kgnumber
start_offset_secondsintegerweight_kgnumber
heart_rateobject[]activity_idstringbpmintegeralways presentdurationstringalways presentsecondsintegeralways present
pointsobject[]always presentactivity_idstringcomparison_wattsintegerdelta_percentnumberdelta_wattsintegerdurationstringalways presentimproved_on_comparisonbooleanoffset_secondsintegersecondsintegeralways presentwattsintegeralways presentwatts_per_kgnumber
power_distributionobjectbucket_width_wattsintegeralways presentbucketsobject[]always presentfrom_wattsintegeralways presentsecondsintegeralways presentto_wattsintegeralways present
user_idstringalways presentwindowstringalways present
Errors
Every error is an RFC 9457 problem document. Branch on its code, which is stable; detail is prose and may be reworded.
400The request was malformed: an unparseable date, an unknown enum value, or a parameter combination that cannot be satisfied.401No access token was supplied, or it is not valid for this API.402The Stride account the token belongs to has no active subscription or trial.403The token does not hold the scope this endpoint requires, or may not act on the athlete or team named.404No such resource, or it is not visible to this token. The two are deliberately indistinguishable.405The path exists but does not serve this method. The Allow header lists the ones it does.429A rate limit was exceeded. Retry after the period in the Retry-After header.500Something failed on Stride's side. The failure is logged with a trace ID.