get_player_win_loss
Retrieve win/loss statistics for Dota 2 players using their Steam32 account ID to analyze player performance and match history.
Instructions
Get win/loss statistics for a player.
Args:
account_id: Steam32 account ID of the player
Returns:
Win/loss record
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"
}