get_match_heroes
Retrieve the list of heroes selected by each player in a specific Dota 2 match using the match ID to analyze team compositions and individual picks.
Instructions
Get heroes played in a specific match.
Args:
match_id: ID of the match to retrieve
Returns:
List of heroes played by each player in the match
Input Schema
Name | Required | Description | Default |
---|---|---|---|
match_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"match_id": {
"title": "Match Id",
"type": "integer"
}
},
"required": [
"match_id"
],
"type": "object"
}