get_player_by_id
Retrieve Dota 2 player information including rank, match history, and statistics using their Steam32 account ID to analyze gameplay data.
Instructions
Get a player's information by their account ID.
Args:
account_id: The player's Steam32 account ID
Returns:
Player information including rank, matches, and statistics
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"
}