get_hero_stats
Retrieve Dota 2 hero statistics including win rates across different skill brackets to analyze hero performance and balance in matches.
Instructions
Get statistics for heroes.
Args:
hero_id: Optional hero ID to get stats for a specific hero
Returns:
Hero statistics including win rates by skill bracket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hero_id | No |
Input Schema (JSON Schema)
{
"properties": {
"hero_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Hero Id"
}
},
"type": "object"
}