List Concept2 Workout Results
concept2_list_resultsFetch paginated Concept2 Logbook workout results with filters for type, date range, and format. Returns distance, time, pace, heart rate, calories, and more for analysis.
Instructions
List workout results (rows/ergs) for a Concept2 Logbook user with pagination and filtering.
Returns a paginated list of workout results. Each result includes: id, date, type, distance, time, time_formatted, workout_type, weight_class, stroke_rate, avg_pace, heart_rate, calories, comments.
Args:
user_id: User ID or "me" (default: "me")
page: Page number (default: 1)
per_page: Results per page (default: 50, max: 250)
type: Filter by machine type ('rower', 'skierg', 'bikeerg')
from: Filter results from this date (YYYY-MM-DD)
to: Filter results to this date (YYYY-MM-DD)
response_format: 'markdown' or 'json' (default: 'markdown')
Returns pagination metadata: total, count, per_page, current_page, total_pages.
Examples:
List all results: user_id="me"
List only rowing: user_id="me", type="rower"
List results in date range: from="2024-01-01", to="2024-12-31"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End date filter (YYYY-MM-DD) | |
| from | No | Start date filter (YYYY-MM-DD) | |
| page | No | Page number (starting at 1) | |
| type | No | Filter by machine type: 'rower', 'skierg', or 'bikeerg' | |
| user_id | No | User ID or "me" for the authenticated user | me |
| per_page | No | Results per page (default: 50, max: 250) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |