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
Class | Method |
---|---|
ActivitiesApi | create_activity<br/>POST /activities<br/>Create an Activity |
ActivitiesApi | getactivityby_id<br/>GET /activities/{id}<br/>Get Activity |
ActivitiesApi | getcommentsbyactivityid<br/>GET /activities/{id}/comments<br/>List Activity Comments |
ActivitiesApi | getkudoersbyactivityid<br/>GET /activities/{id}/kudos<br/>List Activity Kudoers |
ActivitiesApi | getlapsbyactivityid<br/>GET /activities/{id}/laps<br/>List Activity Laps |
ActivitiesApi | getloggedinathleteactivities<br/>GET /athlete/activities<br/>List Athlete Activities |
ActivitiesApi | getzonesbyactivityid<br/>GET /activities/{id}/zones<br/>Get Activity Zones |
ActivitiesApi | updateactivityby_id<br/>PUT /activities/{id}<br/>Update Activity |
AthletesApi | getloggedin_athlete<br/>GET /athlete<br/>Get Authenticated Athlete |
AthletesApi | getloggedinathletezones<br/>GET /athlete/zones<br/>Get Zones |
AthletesApi | get_stats<br/>GET /athletes/{id}/stats<br/>Get Athlete Stats |
AthletesApi | updateloggedin_athlete<br/>PUT /athlete<br/>Update Athlete |
ClubsApi | getclubactivitiesbyid<br/>GET /clubs/{id}/activities<br/>List Club Activities |
ClubsApi | getclubadminsbyid<br/>GET /clubs/{id}/admins<br/>List Club Administrators |
ClubsApi | getclubby_id<br/>GET /clubs/{id}<br/>Get Club |
ClubsApi | getclubmembersbyid<br/>GET /clubs/{id}/members<br/>List Club Members |
ClubsApi | getloggedinathleteclubs<br/>GET /athlete/clubs<br/>List Athlete Clubs |
GearsApi | getgearby_id<br/>GET /gear/{id}<br/>Get Equipment |
RoutesApi | getrouteasgp_x<br/>GET /routes/{id}/export_gpx<br/>Export Route GPX |
RoutesApi | getrouteastc_x<br/>GET /routes/{id}/export_tcx<br/>Export Route TCX |
RoutesApi | getrouteby_id<br/>GET /routes/{id}<br/>Get Route |
RoutesApi | getroutesbyathleteid<br/>GET /athletes/{id}/routes<br/>List Athlete Routes |
SegmentEffortsApi | geteffortsbysegmentid<br/>GET /segment_efforts<br/>List Segment Efforts |
SegmentEffortsApi | getsegmenteffortbyid<br/>GET /segment_efforts/{id}<br/>Get Segment Effort |
SegmentsApi | explore_segments<br/>GET /segments/explore<br/>Explore segments |
SegmentsApi | getloggedinathletestarred_segments<br/>GET /segments/starred<br/>List Starred Segments |
SegmentsApi | getsegmentby_id<br/>GET /segments/{id}<br/>Get Segment |
SegmentsApi | star_segment<br/>PUT /segments/{id}/starred<br/>Star Segment |
StreamsApi | getactivitystreams<br/>GET /activities/{id}/streams<br/>Get Activity Streams |
StreamsApi | getroutestreams<br/>GET /routes/{id}/streams<br/>Get Route Streams |
StreamsApi | getsegmenteffort_streams<br/>GET /segment_efforts/{id}/streams<br/>Get Segment Effort Streams |
StreamsApi | getsegmentstreams<br/>GET /segments/{id}/streams<br/>Get Segment Streams |
UploadsApi | create_upload<br/>POST /uploads<br/>Upload Activity |
UploadsApi | getuploadby_id<br/>GET /uploads/{uploadId}<br/>Get Upload |
Models
- ActivityStats
- ActivityTotal
- ActivityType
- ActivityZone
- AltitudeStream
- BaseStream
- CadenceStream
- ClubActivity
- ClubAthlete
- Comment
- DetailedActivity
- DetailedAthlete
- DetailedClub
- DetailedGear
- DetailedSegment
- DetailedSegmentEffort
- DistanceStream
- Error
- ExplorerResponse
- ExplorerSegment
- Fault
- HeartRateZoneRanges
- HeartrateStream
- Lap
- LatLngStream
- MetaActivity
- MetaAthlete
- MetaClub
- MovingStream
- PhotosSummary
- PhotosSummaryPrimary
- PolylineMap
- PowerStream
- PowerZoneRanges
- Route
- SmoothGradeStream
- SmoothVelocityStream
- Split
- SportType
- StreamSet
- SummaryActivity
- SummaryAthlete
- SummaryClub
- SummaryGear
- SummaryPRSegmentEffort
- SummarySegment
- SummarySegmentEffort
- TemperatureStream
- TimeStream
- TimedZoneRange
- UpdatableActivity
- Upload
- Waypoint
- ZoneRange
- Zones
<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)