SegmentsApi

All URIs are relative to https://www.strava.com/api/v3

MethodHTTP requestDescription
explore_segmentsGET /segments/exploreExplore segments
getloggedinathletestarred_segmentsGET /segments/starredList Starred Segments
getsegmentby_idGET /segments/{id}Get Segment
star_segmentPUT /segments/{id}/starredStar Segment

explore_segments

exploresegments(api::SegmentsApi, bounds::Vector{Float32}; activitytype=nothing, mincat=nothing, maxcat=nothing, _mediaType=nothing) -> ExplorerResponse, OpenAPI.Clients.ApiResponse <br/> exploresegments(api::SegmentsApi, responsestream::Channel, bounds::Vector{Float32}; activitytype=nothing, mincat=nothing, max_cat=nothing, _mediaType=nothing) -> Channel{ ExplorerResponse }, OpenAPI.Clients.ApiResponse

Explore segments

Returns the top 10 segments matching a specified query.

Required Parameters

NameTypeDescriptionNotes
_apiSegmentsApiAPI context
boundsVector{Float32}The latitude and longitude for two points describing a rectangular boundary for the search: [southwest corner latitutde, southwest corner longitude, northeast corner latitude, northeast corner longitude]

Optional Parameters

NameTypeDescriptionNotes
activity_typeStringDesired activity type.[default to nothing]
min_catInt64The minimum climbing category.[default to nothing]
max_catInt64The maximum climbing category.[default to nothing]

Return type

ExplorerResponse

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getloggedinathletestarred_segments

getloggedinathletestarredsegments(api::SegmentsApi; page=nothing, perpage=nothing, _mediaType=nothing) -> Vector{SummarySegment}, OpenAPI.Clients.ApiResponse <br/> getloggedinathletestarredsegments(api::SegmentsApi, responsestream::Channel; page=nothing, per_page=nothing, _mediaType=nothing) -> Channel{ Vector{SummarySegment} }, OpenAPI.Clients.ApiResponse

List Starred Segments

List of the authenticated athlete's starred segments. Private segments are filtered out unless requested by a token with read_all scope.

Required Parameters

NameTypeDescriptionNotes
_apiSegmentsApiAPI context

Optional Parameters

NameTypeDescriptionNotes
pageInt64Page number. Defaults to 1.[default to nothing]
per_pageInt64Number of items per page. Defaults to 30.[default to 30]

Return type

Vector{SummarySegment}

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getsegmentby_id

getsegmentbyid(api::SegmentsApi, id::Int64; mediaType=nothing) -> DetailedSegment, OpenAPI.Clients.ApiResponse <br/> getsegmentbyid(api::SegmentsApi, responsestream::Channel, id::Int64; _mediaType=nothing) -> Channel{ DetailedSegment }, OpenAPI.Clients.ApiResponse

Get Segment

Returns the specified segment. read_all scope required in order to retrieve athlete-specific segment information, or to retrieve private segments.

Required Parameters

NameTypeDescriptionNotes
_apiSegmentsApiAPI context
idInt64The identifier of the segment.

Return type

DetailedSegment

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

star_segment

starsegment(api::SegmentsApi, id::Int64, starred::Bool; mediaType=nothing) -> DetailedSegment, OpenAPI.Clients.ApiResponse <br/> starsegment(api::SegmentsApi, responsestream::Channel, id::Int64, starred::Bool; _mediaType=nothing) -> Channel{ DetailedSegment }, OpenAPI.Clients.ApiResponse

Star Segment

Stars/Unstars the given segment for the authenticated athlete. Requires profile:write scope.

Required Parameters

NameTypeDescriptionNotes
_apiSegmentsApiAPI context
idInt64The identifier of the segment to star.
starredBoolIf true, star the segment; if false, unstar the segment.

Return type

DetailedSegment

Authorization

strava_oauth

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]