1k Tournaments

Note

This endpoint has yet to be implemented. Please be patient as we add the endpoints from v2. The endpoint will return a 501 Not Implemented error.

This endpoint returns a list of tournaments that have 1000 max players.

You may want to use pagination for this request.

HTTP Request

GET https://api.royaleapi.com/tournaments/1k

NameMethodDescription
/tournaments/1kGETList of 1k tournaments

Query String Parameters

All query string parameters default to 0, set the value to 1 for it to be active

NameData TypeRequired / OptionalDescription
1knumberoptionalFilters out only 1k tournaments
opennumberoptionalFilters out only open tournaments
fullnumberoptionalFilters out only full tournaments
inprepnumberoptionalFilters out only tournaments in preperation
joinablenumberoptionalFilters out only joinable tournaments

/tournaments/open, /tournaments/1k, /tournaments/inprep, /tournaments/full and /tournaments/joinable already implement some of these filters. However, you can still mix and match!

Response

https://api.royaleapi.com/tournaments/1k

The above command returns JSON structured like this. In the actual response, there will be a maximum of 100 tournaments:

Full JSON response

[
    {
        "tag": "CQVCRRC",
        "name": "Nova SG Monthly Cup",
        "open": false,
        "currentPlayers": 44,
        "status": "inProgress",
        "createTime": 1529145581,
        "prepTime": 7200,
        "startTime": null,
        "endTime": null,
        "duration": 3600,
        "description": "good luck to SG Branch! #NovaStrong #AyisGOD",
        "updatedAt": 1529156328,
        "maxCapacity": 1000,
    }
]