get_player_peers
Retrieve players who frequently play Dota 2 with a specific player by providing their Steam32 account ID to identify common teammates and opponents.
Instructions
Get players who have played with the specified player.
Args:
account_id: Steam32 account ID of the player
limit: Number of peers to retrieve (default: 5)
Returns:
List of players frequently played with
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"
}