/v1/match
Full match detail
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/dota-api/v1/match" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dota-api/v1/match", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dota-api/v1/match");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/dota-api/v1/match",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"match": {
"league": "Party To Play league",
"players": [
{
"hero": "Puck",
"name": "Yankiiツ",
"side": "radiant",
"kills": 6,
"level": 19,
"deaths": 7,
"assists": 12,
"hero_id": 13,
"last_hits": 171,
"account_id": 449420398,
"xp_per_min": 591,
"gold_per_min": 431
},
{
"hero": "Tidehunter",
"name": "ЧЕБОКСАРЫ",
"side": "radiant",
"kills": 9,
"level": 23,
"deaths": 6,
"assists": 12,
"hero_id": 29,
"last_hits": 217,
"account_id": 1187858460,
"xp_per_min": 831,
"gold_per_min": 537
},
{
"hero": "Templar Assassin",
"name": "swarovski",
"side": "radiant",
"kills": 9,
"level": 24,
"deaths": 11,
"assists": 11,
"hero_id": 46,
"last_hits": 358,
"account_id": 900905070,
"xp_per_min": 908,
"gold_per_min": 675
},
{
"hero": "Disruptor",
"name": "Hush",
"side": "radiant",
"kills": 1,
"level": 15,
"deaths": 21,
"assists": 19,
"hero_id": 87,
"last_hits": 24,
"account_id": 320429934,
"xp_per_min": 388,
"gold_per_min": 265
},
{
"hero": "Vengeful Spirit",
"name": "ҒRΣΣDΩM",
"side": "radiant",
"kills": 1,
"level": 16,
"deaths": 13,
"assists": 20,
"hero_id": 20,
"last_hits": 17,
"account_id": 113575852,
"xp_per_min": 417,
"gold_per_min": 294
},
{
"hero": "Kez",
"name": "blossom",
"side": "dire",
"kills": 15,
"level": 25,
"deaths": 4,
"assists": 17,
"hero_id": 145,
"last_hits": 290,
"account_id": 131188866,
"xp_per_min": 1041,
"gold_per_m
…