get_records
Retrieve top world record performances for Dota 2 stats like kills, GPM, and match duration. Each record includes hero, match ID, and exact score.
Instructions
Get top world record performances in a specific statistical field.
Use this when users ask:
"What's the world record for most kills in a game?"
"Show me the highest GPM ever achieved"
"What's the longest Dota 2 game ever?"
"Who has the world record for [stat]?"
"What are the top performances for [stat]?"
"Has anyone ever gotten 50+ kills?"
Returns the all-time best performances globally for the specified metric, including match details, hero used, and player information. These are the absolute highest values ever recorded in tracked matches.
Supports natural language field names with fuzzy matching and variations.
Args: field: Statistical field to get records for. Accepts variations like: - Combat: "kills", "deaths", "assists", "kda" - Economy: "gold_per_min", "xp_per_min", - Farming: "last_hits", "denies" - Damage: "hero_damage", "hero_healing", "tower_damage" - Other: "duration"
Returns: List of top record performances (sorted by field value, descending), each containing: - match_id (int): Match ID for the record game - start_time (str): Date of the match (e.g., "December 09, 2024") - hero_id (int): Hero ID used in the record - hero_name (str): Hero's display name (e.g., "Rubick", "Anti-Mage") - score (float): The record value achieved (e.g., 45 kills, 1245 GPM) - Additional match details may be included depending on the field
Common queries: - Kill record: get_records("kills") - GPM record: get_records("gpm") or get_records("gold_per_min") - Longest game: get_records("duration")
Example: get_records("kills") -> [ { "match_id": 1234567890, "start_time": "March 15, 2024", "hero_id": 1, "hero_name": "Anti-Mage", "score": 45.0, ... }, { "match_id": 9876543210, "start_time": "January 08, 2024", "hero_id": 86, "hero_name": "Rubick", "score": 43.0, ... }, ... ]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| field | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |