List all activities
GET/clubs/{connection_id}/activity
Parameters
limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
group_idstring
The group ID to filter by (reference to HrisGroup)
start_gtestring
The start date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
end_ltstring
The end date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
Returns
ClubsActivityarray
ClubActivity (getClubActivitiesById, NO id) and the full DetailedActivity (getActivityById).
idstring
Unique identifier for this activity (not provided by ClubActivity)
created_atdate
The date that this activity was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this activity was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
group_idstring
The group this activity was listed under (reference to HrisGroup)
namestring
The name of the activity
descriptionstring
The description of the activity (DetailedActivity only)
athlete_idstring
The id of the athlete who performed the activity (DetailedActivity only)
athlete_namestring
The full name of the athlete
distancenumber
The activity's distance, in meters
moving_timenumber
The activity's moving time, in seconds
elapsed_timenumber
The activity's elapsed time, in seconds
total_elevation_gainnumber
The activity's total elevation gain, in meters
elevation_highnumber
The activity's highest elevation, in meters (DetailedActivity only)
elevation_lownumber
The activity's lowest elevation, in meters (DetailedActivity only)
start_atdate
When the activity started (UTC) (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
timezonestring
The timezone of the activity
achievement_countnumber
The number of achievements gained during this activity
kudos_countnumber
The number of kudos given for this activity
comment_countnumber
The number of comments for this activity
athlete_countnumber
The number of athletes that took part in this activity
photo_countnumber
The number of Instagram photos for this activity
average_speednumber
The activity's average speed, in meters per second
max_speednumber
The activity's max speed, in meters per second
average_cadencenumber
The activity's average cadence
average_heartratenumber
The activity's average heart rate, in beats per minute
max_heartratenumber
The activity's max heart rate, in beats per minute
average_wattsnumber
The activity's average power output, in watts
max_wattsnumber
The activity's max power output, in watts
weighted_average_wattsnumber
The activity's weighted average power output, in watts
kilojoulesnumber
The total work done, in kilojoules
caloriesnumber
The number of kilocalories consumed during this activity
has_heartrateboolean
Whether the activity has heart rate data
is_trainerboolean
Whether this activity was recorded on a training machine
is_commuteboolean
Whether this activity is a commute
is_manualboolean
Whether this activity was created manually
is_privateboolean
Whether this activity is private
map_polylinestring
The detailed polyline of the activity's map
map_summary_polylinestring
The summary polyline of the activity's map
workout_typenumber
The activity's workout type
suffer_scorenumber
The activity's relative effort score
pr_countnumber
The number of personal records set during this activity
const options = {
method: 'GET',
url: 'https://api.unified.to/clubs/5de520f96e439b002043d8dc/activity',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-06-03T20:53:21.274Z',
sort: 'updated_at',
order: 'asc',
query: '',
group_id: '',
start_gte: '',
end_lt: '',
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know