Lodol Docs

Runkeeper

API actions for the Runkeeper integration.

Runkeeper

Sync profiles and activities with Runkeeper.


Get profile

Get the profile details of the connected Runkeeper account.

Response

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

List recent activities

List recent Runkeeper fitness activities, one page at a time.

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_secondsnumberYesHow long the activity lasted, in seconds.
start_timestringNoWhen the activity started, for example 2026-07-15T09:00:00Z.
notesstringNoOptional notes to attach to the activity.

Response

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

On this page