Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.rewind.rest/v1/running/charts/elevation \ --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.rewind.rest/v1/running/charts/elevation', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "https://api.rewind.rest/v1/running/charts/elevation" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "data": [ { "date": "2026-03-01", "elevation_ft": 350, "distance_mi": 5.2, "cumulative_elevation_ft": 350 }, { "date": "2026-03-03", "elevation_ft": 280, "distance_mi": 4.1, "cumulative_elevation_ft": 630 } ] }
{ "error": "Not found", "status": 404 }
Returns elevation data with cumulative totals.
API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.
Elevation data
Show child attributes