get_match_data
Retrieve detailed Dota 2 match information including player stats, scores, and game data using the match ID to analyze gameplay performance and outcomes.
Instructions
Get detailed data for a specific match.
Args:
match_id: ID of the match to retrieve
Returns:
Detailed match information including players, scores, and stats
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"
}