get_player_rankings
Retrieve a player's hero rankings using their Steam32 account ID to analyze performance across different heroes in Dota 2 matches.
Instructions
Get player hero rankings.
Args:
account_id: Steam32 account ID of the player
Returns:
Player's hero rankings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "integer"
}
},
"required": [
"account_id"
],
"type": "object"
}