Install
openclaw skills install peloton-statsFetch and report Peloton cycling workout statistics. Use when the user wants to see their Peloton workout data, weekly cycling stats, ride history, or perfor...
openclaw skills install peloton-statsFetch weekly cycling stats directly from the Peloton API. Zero dependencies — uses only Python stdlib.
Store your Peloton credentials securely using OpenClaw's credential manager:
openclaw config set auth.profiles.peloton:default.type api_key
openclaw config set auth.profiles.peloton:default.provider peloton
openclaw config set auth.profiles.peloton:default.username "your-email@example.com"
openclaw config set auth.profiles.peloton:default.password "your-password"
Or edit ~/.openclaw/agents/main/agent/auth-profiles.json directly:
{
"profiles": {
"peloton:default": {
"type": "api_key",
"provider": "peloton",
"username": "your-email@example.com",
"password": "your-password"
}
}
}
python3 ~/.openclaw/skills/peloton-stats/scripts/fetch_stats.py
Outputs markdown with:
| Metric | Description |
|---|---|
| Total Rides | Number of cycling workouts in last 7 days |
| Duration | Total minutes ridden |
| Calories | Total calories burned |
| Output | Total energy in kilojoules (kJ) |
| Avg Power | Average watts across all rides |
| Avg Resistance | Average resistance % |
| Avg Cadence | Average RPM |
api.onepeloton.com