get_event_by_id
Retrieve detailed data for a specific event from Intervals.icu using the event ID. Optional arguments include athlete ID and API key for customized access.
Instructions
Get detailed information for a specific event from Intervals.icu
Args:
event_id: The Intervals.icu event ID
athlete_id: The Intervals.icu athlete ID (optional, will use ATHLETE_ID from .env if not provided)
api_key: The Intervals.icu API key (optional, will use API_KEY from .env if not provided)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | ||
athlete_id | No | ||
event_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
},
"athlete_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Athlete Id"
},
"event_id": {
"title": "Event Id",
"type": "string"
}
},
"required": [
"event_id"
],
"title": "get_event_by_idArguments",
"type": "object"
}