match_uid
. It processes the match details and player stats.curl --location --request GET 'https://marvelrivalsapi.com/api/v1/match/' \
--header 'x-api-key;'
{
"match_details": {
"match_uid": "abcd1234",
"game_mode": {
"game_mode_id": 1,
"game_mode_name": "Deathmatch"
},
"replay_id": "replay12345",
"mvp_uid": "player123",
"mvp_hero_id": 101,
"svp_uid": "player456",
"svp_hero_id": 102,
"dynamic_fields": {},
"match_players": [
{
"player_uid": "player123",
"nick_name": "Player1",
"player_icon": "/icons/player1.jpg",
"camp": "A",
"cur_hero_id": 101,
"cur_hero_icon": "/heroes/hero101.jpg",
"is_win": true,
"kills": 5,
"deaths": 3,
"assists": 2,
"total_hero_damage": 3000,
"total_hero_heal": 1500,
"total_damage_taken": 2000,
"player_heroes": [
{
"hero_id": 101,
"play_time": 300,
"kills": 3,
"deaths": 1,
"assists": 2,
"session_hit_rate": 75.5,
"hero_icon": "/heroes/hero/101_icon.jpg"
}
]
}
]
}
}