get_competition_by_id
Retrieve detailed WCA competition information including venue details, events, results, and organizer data using a specific competition ID.
Instructions
Get detailed information about a specific competition by its ID.
Returns comprehensive information about a WCA competition including venue details, events, results, and organizer information.
Args: competition_id: WCA competition ID (e.g., "WC2023")
Returns: Detailed competition information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
competition_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"competition_id": {
"title": "Competition Id",
"type": "string"
}
},
"required": [
"competition_id"
],
"type": "object"
}