Strava · Example Payload

Strava List Activities Example

CyclingFitnessFitness TrackingRunningSports

Strava List Activities Example is an example object payload from Strava, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://www.strava.com/api/v3/athlete/activities?per_page=10&page=1",
    "headers": {
      "Authorization": "Bearer 4f5g6h7i8j9k0l..."
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "id": 12345678,
        "name": "Morning Run in Central Park",
        "distance": 8046.72,
        "moving_time": 2700,
        "elapsed_time": 2820,
        "total_elevation_gain": 45.2,
        "type": "Run",
        "sport_type": "Run",
        "start_date": "2026-05-01T07:00:00Z",
        "start_date_local": "2026-05-01T07:00:00Z",
        "timezone": "(GMT-05:00) America/New_York",
        "start_latlng": [40.7851, -73.9680],
        "end_latlng": [40.7851, -73.9681],
        "achievement_count": 3,
        "kudos_count": 12,
        "comment_count": 2,
        "trainer": false,
        "commute": false,
        "manual": false,
        "private": false,
        "average_speed": 2.981,
        "max_speed": 4.2,
        "average_heartrate": 155.3,
        "max_heartrate": 172.0,
        "suffer_score": 42
      }
    ]
  }
}