get_competition_event_results
Retrieve competition results for a specific speedcubing event, allowing filtering by round and optional inclusion of detailed solve times.
Instructions
Get results for a specific event within a WCA competition.
Returns focused results data for a single event in a competition. By default, returns only Final round results for better LLM processing.
Args: competition_id: WCA competition ID (e.g., "WC2025", "CubingUSANationals2024") event_id: WCA event ID (e.g., "333" for 3x3x3 Cube, "222" for 2x2x2, "333bf" for 3x3x3 Blindfolded, "444" for 4x4x4) round: Specific round to filter by (default: "Final"). Use "all" for all rounds, or specify: "Final", "Semi Final", "Second round", "First round" limit: Maximum number of results to return (optional) include_solves: Whether to include detailed solve times (default: False)
Returns: Filtered results data including: - Competitor performances for the specified round - Position, best single, and average times - Optionally detailed solve breakdowns
Example: get_competition_event_results("WC2025", "333") - Final round only (16 results) get_competition_event_results("WC2025", "333", round="all") - All rounds (2490 results) get_competition_event_results("WC2025", "333", limit=10) - Top 10 from Final
Input Schema
Name | Required | Description | Default |
---|---|---|---|
competition_id | Yes | ||
event_id | Yes | ||
include_solves | No | ||
limit | No | ||
round | No | Final |