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
| Parameter | Type | Required | Description |
|---|---|---|---|
page | number | No | Page number to fetch (starts at 1). |
page_size | number | No | How many activities to return per page. |
Response
{
"activities": {},
"count": {},
"status": "mock_value"
}Record activity
Create a new Runkeeper activity with duration and distance.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
activity_type | string | Yes | Type of activity (e.g., running, cycling). |
distance_km | number | Yes | Distance covered in kilometers. |
duration_seconds | number | Yes | How long the activity lasted, in seconds. |
start_time | string | No | When the activity started, for example 2026-07-15T09:00:00Z. |
notes | string | No | Optional notes to attach to the activity. |
Response
{
"activity": {},
"status": "mock_value"
}