get_activities
Retrieve recent activities of the authenticated athlete from Strava, allowing users to access and analyze workout data. Specify a limit to control the number of activities returned.
Instructions
Get the authenticated athlete's recent activities.
Args:
limit: Maximum number of activities to return (default: 10)
Returns:
Dictionary containing activities data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
}
},
"title": "get_activitiesArguments",
"type": "object"
}