Search API Connector Documentation
Import Strava Data to Google Sheets
In this guide, we’ll walk through how to pull Strava data data directly into Google Sheets, using the API Connector add-on for Sheets. Strava is, of course, a well-known fitness tracker website and app.
Contents
- Before You Begin
- Part 1: Connect to the Strava API
- Part 2: Pull Data from Strava to Sheets
- Part 3: Create a Custom API Request
- Part 4: Handle Pagination
- Part 5: API Documentation
Before You Begin
Click here to install the API Connector add-on from the Google Marketplace.
Part 1: Connect to the Strava API
The easiest way to get started with the Strava API is through API Connector’s built-in integration.
- Select Strava from the drop-down list of applications
- Under Authorization, click Connect to Strava
- You will be directed to strava.com and asked to sign in, if you haven't already. You'll also be asked to authorize the connection.
- You'll then be returned to your Google Sheet, and can verify that your Strava connection is active.
Part 2: Pull Data from Strava to Sheets
Now that we’re connected, let’s pull some data into Sheets.
- Under Endpoint, choose
/athlete
to get data about yourself. - Select a destination sheet, name your request, and click Run.
Part 3: Create a Custom API Request
Alternatively, you can create a custom request instead of using API Connector’s built-in integration, using any of the endpoints and parameters shown in the API documentation.
Here's an example request setup:
- Application:
Custom
- Method:
GET
- Request URL:
https://www.strava.com/api/v3/athlete
- OAuth:
Strava
Part 4: Handle Pagination
Note Strava's limits on the number of records returned on a response. By default, only 30 records will be returned unless you use pagination handling as described in their documentation.
This means that to get 200 records, you’d use the 'per_page' parameter, and to return more than 200 you’d then make subsequent requests using the 'page' parameter.
With API Connector you can loop through these automatically with pagination handling, like this:
- Pagination type:
page parameter
- Page parameter:
page
- Run until: choose when to stop fetching data
Part 5: API Documentation
To see more API endpoints and example responses, check out the Strava API playground located at https://developers.strava.com/playground/.
Also, check out this video from Scott for more ideas on using the Strava API: https://www.youtube.com/watch?v=c4kKao0hGO4
Hi, I tried using this with the endpoint
https://www.strava.com/api/v3/athlete/activities
but it only returned 30 activities. The cutoff point seemed random, it only went back to May 2020.Is this a problem with Strava's OAuth? Should this API connection work in 2021 still?
Thanks
By default Strava only sends 30 records at a time. To get more, you can add
?per_page=200
to the end of your URL. If you have more than 200 records, you would paginate through using "page parameter" pagination.Hi Anna,
Do you think it's possible to get activity date from strava. I don't see it in Strava API documentation.
Or can we get data using API Connector, by filtering "Today Activities" Only (based on date range) ?
Hey Rudy, when you run the
https://www.strava.com/api/v3/athlete/activities
request, it returns a "start_date" field, is that what you're looking for?Sorry forget to put "Club", So I was looking for Start Date for Club Activities.
Gotcha. Based on what I see in their API docs, they only return the following for the
/clubs/{id}/activities
endpoint:[
{
"resource_state": 2,
"athlete": {
"resource_state": 2,
"firstname": "Peter",
"lastname": "S."
},
"name": "World Championship",
"distance": 2641.7,
"moving_time": 577,
"elapsed_time": 635,
"total_elevation_gain": 8.8,
"type": "Ride",
"workout_type": null
}
]
There's no date in there so it doesn't look like this is available. I checked and found quite a few people complaining about this (e.g. here, here, here). Sorry about that.
owh, ok. Thanks Ana for helping.
Regards,
Rudy
Hi,
would you mind making an example including activity stream? I can't seem to make that working
That is, I can run:
https://www.strava.com/api/v3/athlete/activities/{id]/streams
, but I can't make it return anytthing but distance.I think it only returns distance, at least that's what the example in their docs shows. What are you trying to get?
I'm trying to make a heart rate based measure of training load. Currently I use the open software Golden Cheetah to do this and copy-paste the values over to Google Sheets.
I see. Their docs are pretty unclear on this point, and I don't have my own data to test with, but could you please try this?
https://www.strava.com/api/v3/activities/{id}/streams?keys=distance,latlng,velocity_smooth,altitude,heartrate&key_by_type=true
Let me know if that gets you back what you're looking for.
is there a means to use values from the sheet as parameters on the api. For example, the strava gear api requires the gearid which can be gotten from activities. I would like to pass the gearid to the api in a loop to get all the gear records.
Sure, please see this article about referencing cells in your requests: https://mixedanalytics.com/knowledge-base/api-connector-create-api-request-based-on-cell/
The section titled "Reference Multiple Cells" shows how you'd loop through a list of cells and plug the values into your request.
Hello! Thank you for the article! Could you please advise how or where can I get the Club's id? I would like to export recent activities of club members but for API
/clubs/{id}/activities
Thanks in advance.
You can see some discussion on this topic here: https://groups.google.com/g/strava-api/c/gkn5kr3YHeo
Based on that you'll need to make an API request to
http://strava.github.io/api/v3/clubs/#get-athletes
. Please try that and see if it gets you what you're looking for.Hi
I love API connector and have imported all my Strava activities into Google Sheets.
While analyzing them I initially couldn't find most of the activities I did abroad (outside the Netherlands for me). Looking closer they are there but almost all of them are listed with location_country=Netherlands, although in some cases the time zone indicates Switzerland or France. In the Strava web interface these activities are located in the correct countries.
When I search the Strava API documentation (https://developers.strava.com/docs/reference/) location_country is not really explained.
I would like to be able to filter for foreign activities. How can I get the correct data?
Cheers,
Marnix
I'm not really familiar with this but after checking online, this seems to be a bug in the Strava API.
I see a few people mentioning it, e.g. here and here
So unfortunately it looks like you will have to use the web interface for this 🙁
Not the answer I hoped for but thanks!
i'm trying to pull my yearly miles and elevation.
Any ideas?
guess I should say:
YTD Miles
YTD Elevationi
I think you have the following options:
1)
https://www.strava.com/api/v3/athletes/{id}/stats
. This will show you your YTD totals, but only for activities set to Everyone.2)
https://www.strava.com/api/v3/athlete/activities
. This will show all your data, split out for each activity date, so you'll need to aggregate it yourself.