get_player_recent_matches
Retrieve recent Dota 2 match history for any player using their Steam account ID to analyze performance, track gameplay patterns, and review match outcomes.
Instructions
Get recent matches played by a player.
Args:
account_id: Steam32 account ID of the player
limit: Number of matches to retrieve (default: 5)
Returns:
List of recent matches with details
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"
}