get_player_heroes
Retrieve a player's most frequently played Dota 2 heroes with performance statistics by providing their Steam32 account ID and optional limit parameter.
Instructions
Get a player's most played heroes.
Args:
account_id: Steam32 account ID of the player
limit: Number of heroes to retrieve (default: 5)
Returns:
List of most played heroes with stats
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "integer"
},
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
}
},
"required": [
"account_id"
],
"type": "object"
}