Skip to main content
GET
/
v1
/
running
/
recent
Latest runs
curl --request GET \
  --url https://api.rewind.rest/v1/running/recent \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 17748681520,
      "strava_id": 17748681520,
      "name": "Monday Evening Run",
      "date": "2026-03-16T17:00:05Z",
      "distance_mi": 4.49,
      "duration": "36:02",
      "duration_s": 2162,
      "pace": "8:02/mi",
      "elevation_ft": 370.73,
      "heartrate_avg": null,
      "heartrate_max": null,
      "cadence": 75.2,
      "calories": 525,
      "suffer_score": null,
      "city": null,
      "state": null,
      "polyline": "_wfbHb|niVD_@TEd@...",
      "is_race": false,
      "workout_type": "default",
      "strava_url": "https://www.strava.com/activities/17748681520"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.rewind.rest/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.

Query Parameters

limit
integer
default:10
Required range: 1 <= x <= 50
page
integer
default:1
Required range: x >= 1
date
string

Single day (YYYY-MM-DD). Overrides from/to.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2025-02-17"

from
string

Range start, inclusive (ISO 8601)

Example:

"2025-02-01T00:00:00Z"

to
string

Range end, inclusive (ISO 8601)

Example:

"2025-02-28T23:59:59Z"

Response

Recent activities

data
object[]
required