Zum Inhalt springen
GET /v1/pro-matches

Recent professional matches

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/dota-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/dota-api/v1/pro-matches" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dota-api/v1/pro-matches", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dota-api/v1/pro-matches");
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/pro-matches",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 30,
        "matches": [
            {
                "league": "SIVVIT League",
                "duration": 1959,
                "match_id": 8842439090,
                "dire_team": "MakeevkaTeam",
                "dire_score": 19,
                "start_time": 1780839965,
                "radiant_win": true,
                "series_type": 0,
                "radiant_team": "Sanya ssssqd",
                "radiant_score": 46
            },
            {
                "league": "SIVVIT League",
                "duration": 1764,
                "match_id": 8842432544,
                "dire_team": "DayDreams",
                "dire_score": 6,
                "start_time": 1780839731,
                "radiant_win": true,
                "series_type": 0,
                "radiant_team": "BoomBoys",
                "radiant_score": 34
            },
            {
                "league": "SIVVIT League",
                "duration": 1126,
                "match_id": 8842427685,
                "dire_team": null,
                "dire_score": 4,
                "start_time": 1780839558,
                "radiant_win": true,
                "series_type": 0,
                "radiant_team": "GHOULCKOE",
                "radiant_score": 44
            },
            {
                "league": "刀塔扭蛋杯",
                "duration": 4272,
                "match_id": 8842386728,
                "dire_team": "软柿子人身意外饱险",
                "dire_score": 40,
                "start_time": 1780838115,
                "radiant_win": false,
                "series_type": 1,
                "radiant_team": "超耐磨",
                "radiant_score": 32
            },
            {
                "league": "Party To Play league",
                "duration": 2147,
                "match_id": 8842319756,
                "dire_team": "АГПЗ",
                "dire_score": 58,
                "start_time": 1780835453,
                "radiant_win": false,
                "series_type": 0,
                "radiant_team": "Газики",
                "radiant_score": 28
            },
            {
                "league": "SIVVIT League",
                "duration": 2754,
                "match_id": 8842309582,
                "dire_team": "Team Sparta",
                "dire_score": 34,
                "start_time": 1780835012,
                "radiant_win": true,
                "series_type": 0,
                "radiant_team": null,
                "radiant_score": 53
            },
            {
                "league": "SIVVIT League",
                "duration": 1661,
                "match_id": 8842301295,
                "dire_team": "Sixseven Team",
                "dire_score": 8,
                "start_time": 1780834663,
                "radiant_win": true,
                "series_type": 0,
                "radiant_team": "GHOULCKOE",
                "radiant_score": 37
            },
            {
                "league": "SIVVIT L
…