Tournament Matches


GET/api/v1/tournaments/:tournament_id/events/:event_id/matches

List tournament event matches

This endpoint allows you to retrieve all the matches of a tournament event by using the DartConnect Tournament ID & DartConnect Event ID.

Request

GET
/api/v1/tournaments/dutchopen24/events/49168/matches
curl https://public-api.dartconnect.com/api/v1/tournaments/dutchopen24/events/49168/matches \
-H "Authorization: Bearer {token}"

Response

{
    "data": [
        "T512": [
            {
                "id": 2679084,
                "tournament_id": "dutchopen24",
                "event_id": 58775,
                "competitor_home": {
                    "id": 801432,
                    "type": "player",
                    "full_name": "Beau Greaves",
                    "org_player_id": "WS-11758-20040109-Beau"
                },
                "competitor_away": {
                    "id": null,
                    "type": null,
                    "full_name": null,
                    "org_player_id": null
                },
                "scorekeeper": {
                    "id": null,
                    "type": null,
                    "full_name": null,
                    "org_player_id": null
                },
                "round": "T512",
                "bracket_match_id": "1_1",
                "status": "C",
                "match_score": null,
                "is_bye": "Y",
            },
            {
                "id": 2679087,
                //
            }
        ],
        "T256": [
            //
        ]
    ]
}

Was this page helpful?