Julia API client for StravaAPI

The Swagger Playground is the easiest way to familiarize yourself with the Strava API by submitting HTTP requests and observing the responses before you write any client code. It will show what a response will look like with different endpoints depending on the authorization scope you receive from your athletes. To use the Playground, go to https://www.strava.com/settings/api and change your “Authorization Callback Domain” to developers.strava.com. Please note, we only support Swagger 2.0. There is a known issue where you can only select one scope at a time. For more information, please check the section “client code” at https://developers.strava.com/docs.

Overview

This API client was generated by the OpenAPI Generator project. By using the openapi-spec from a remote server, you can easily generate an API client.

  • API version: 3.0.0
  • Generator version: 7.13.0-SNAPSHOT
  • Build package: org.openapitools.codegen.languages.JuliaClientCodegen

Installation

Place the Julia files generated under the src folder in your Julia project. Include StravaAPI.jl in the project code. It would include the module named StravaAPI.

Documentation is generated as markdown files under the docs folder. You can include them in your project documentation. Documentation is also embedded in Julia which can be used with a Julia specific documentation generator.

API Endpoints

ClassMethod
ActivitiesApicreate_activity<br/>POST /activities<br/>Create an Activity
ActivitiesApigetactivityby_id<br/>GET /activities/{id}<br/>Get Activity
ActivitiesApigetcommentsbyactivityid<br/>GET /activities/{id}/comments<br/>List Activity Comments
ActivitiesApigetkudoersbyactivityid<br/>GET /activities/{id}/kudos<br/>List Activity Kudoers
ActivitiesApigetlapsbyactivityid<br/>GET /activities/{id}/laps<br/>List Activity Laps
ActivitiesApigetloggedinathleteactivities<br/>GET /athlete/activities<br/>List Athlete Activities
ActivitiesApigetzonesbyactivityid<br/>GET /activities/{id}/zones<br/>Get Activity Zones
ActivitiesApiupdateactivityby_id<br/>PUT /activities/{id}<br/>Update Activity
AthletesApigetloggedin_athlete<br/>GET /athlete<br/>Get Authenticated Athlete
AthletesApigetloggedinathletezones<br/>GET /athlete/zones<br/>Get Zones
AthletesApiget_stats<br/>GET /athletes/{id}/stats<br/>Get Athlete Stats
AthletesApiupdateloggedin_athlete<br/>PUT /athlete<br/>Update Athlete
ClubsApigetclubactivitiesbyid<br/>GET /clubs/{id}/activities<br/>List Club Activities
ClubsApigetclubadminsbyid<br/>GET /clubs/{id}/admins<br/>List Club Administrators
ClubsApigetclubby_id<br/>GET /clubs/{id}<br/>Get Club
ClubsApigetclubmembersbyid<br/>GET /clubs/{id}/members<br/>List Club Members
ClubsApigetloggedinathleteclubs<br/>GET /athlete/clubs<br/>List Athlete Clubs
GearsApigetgearby_id<br/>GET /gear/{id}<br/>Get Equipment
RoutesApigetrouteasgp_x<br/>GET /routes/{id}/export_gpx<br/>Export Route GPX
RoutesApigetrouteastc_x<br/>GET /routes/{id}/export_tcx<br/>Export Route TCX
RoutesApigetrouteby_id<br/>GET /routes/{id}<br/>Get Route
RoutesApigetroutesbyathleteid<br/>GET /athletes/{id}/routes<br/>List Athlete Routes
SegmentEffortsApigeteffortsbysegmentid<br/>GET /segment_efforts<br/>List Segment Efforts
SegmentEffortsApigetsegmenteffortbyid<br/>GET /segment_efforts/{id}<br/>Get Segment Effort
SegmentsApiexplore_segments<br/>GET /segments/explore<br/>Explore segments
SegmentsApigetloggedinathletestarred_segments<br/>GET /segments/starred<br/>List Starred Segments
SegmentsApigetsegmentby_id<br/>GET /segments/{id}<br/>Get Segment
SegmentsApistar_segment<br/>PUT /segments/{id}/starred<br/>Star Segment
StreamsApigetactivitystreams<br/>GET /activities/{id}/streams<br/>Get Activity Streams
StreamsApigetroutestreams<br/>GET /routes/{id}/streams<br/>Get Route Streams
StreamsApigetsegmenteffort_streams<br/>GET /segment_efforts/{id}/streams<br/>Get Segment Effort Streams
StreamsApigetsegmentstreams<br/>GET /segments/{id}/streams<br/>Get Segment Streams
UploadsApicreate_upload<br/>POST /uploads<br/>Upload Activity
UploadsApigetuploadby_id<br/>GET /uploads/{uploadId}<br/>Get Upload

Models

<a id="authorization"></a>

Authorization

Authentication schemes defined for the API: <a id="strava_oauth"></a>

strava_oauth

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://www.strava.com/api/v3/oauth/authorize
  • Scopes:
  • read_all: Read private routes, private segments, and private events for the user
  • profile:write: Update the user's weight and Functional Threshold Power (FTP), and access to star or unstar segments on their behalf
  • activity:read_all: The same access as activity:read, plus privacy zone data and access to read the user's activities with visibility set to Only You
  • activity:write: Access to create manual activities and uploads, and access to edit any activities that are visible to the app, based on activity read access level
  • profile:read_all: Read all profile information even if the user has set their profile visibility to Followers or Only You
  • activity:read: Read the user's activity data for activities that are visible to Everyone and Followers, excluding privacy zone data
  • read: Read public segments, public routes, public profile data, public posts, public events, club feeds, and leaderboards

Example

    using OpenAPI
    using OpenAPI.Clients
    import OpenAPI.Clients: Client, set_header
    client = Client(server_uri)
    set_header(client, "Authorization", "Bearer $bearer_auth")
    api = MyApi(client)
    result = callApi(api, args...; api_key)

Author