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
| 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 | Duration of the activity in seconds. |
start_time | string | No | Optional start time for the activity (ISO string recommended). |
notes | string | No | Optional notes to attach to the activity. |
Response
{
"activity": {},
"status": "mock_value"
}