stravalib.client.Client.get_segment_streams

Client.get_segment_streams(segment_id, types=None, resolution=None, series_type=None)[source]

Returns an streams for a segment.

https://developers.strava.com/docs/reference/#api-Streams-getSegmentStreams

Streams represent the raw data of the uploaded file. External applications may only access this information for activities owned by the authenticated athlete.

Streams are available in 11 different types. If the stream is not available for a particular activity it will be left out of the request results.

Streams types are: time, latlng, distance, altitude, velocity_smooth,

heartrate, cadence, watts, temp, moving, grade_smooth

Parameters
  • segment_id (int) – The ID of segment.

  • types (list) – (optional) A list of the the types of streams to fetch.

  • resolution (str) – (optional, default is ‘all’) indicates desired number of data points. ‘low’ (100), ‘medium’ (1000), ‘high’ (10000) or ‘all’.

  • series_type (str) – (optional, default is ‘distance’. Relevant only if using resolution either ‘time’ or ‘distance’. Used to index the streams if the stream is being reduced.

Returns

An dictionary of stravalib.model.Stream from the effort.

Return type

dict