Lodol Docs

Runkeeper

API actions for the Runkeeper integration.

Runkeeper

Sync profiles and activities with Runkeeper.


Get profile

Retrieve the authenticated Runkeeper user's profile details.

Response

{
  "profile": {},
  "status": "mock_value"
}

List recent activities

List recent Runkeeper fitness activities with pagination.

Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number to fetch (starts at 1).
page_sizenumberNoHow many activities to return per page.

Response

{
  "activities": {},
  "count": {},
  "status": "mock_value"
}

Record activity

Create a new Runkeeper activity with duration and distance.

Parameters

ParameterTypeRequiredDescription
activity_typestringYesType of activity (e.g., running, cycling).
distance_kmnumberYesDistance covered in kilometers.
duration_secondsnumberYesDuration of the activity in seconds.
start_timestringNoOptional start time for the activity (ISO string recommended).
notesstringNoOptional notes to attach to the activity.

Response

{
  "activity": {},
  "status": "mock_value"
}

On this page