Viewer API › Rounds Legacy
LegacyGET /tournaments/{tournament_id}/rounds
This endpoint is in legacy mode. Access will soon be deprecated. It is therefore advised to use another endpoint when possible.
Returns all rounds of a tournament with basic information and settings.
Resource URL
https://api.toornament.com/viewer/v2/tournaments/{tournament_id}/rounds
HTTP headers
- X-Api-Keystring
API key of your application (see Authentication)
- Rangestring
A range of requested items using the
rounds
unit. The size of the range can not exceed 50. (see Pagination)Example: rounds=0-49
Path parameters
- tournament_idstring
The id of the tournament you want to retrieve data about.
Query Parameters
- stage_idsarray
A list of stage ids to filter.
Example: 618965765764577354,618931468547654563
- stage_numbersarray
A list of stage numbers to filter.
Example: 1,3
- group_idsarray
A list of group ids to filter.
Example: 618965314871946714,618932178746476544
- group_numbersarray
A list of group numbers to filter.
Example: 3,4
Request Body
This endpoint does not require a request body.
Response
[206] Rounds retrieved.
Example
[ { "id": "618983668512789184", "stage_id": "618945443132178479", "group_id": "618983668512789184", "number": 2, "name": "1\/8th Finals", "closed": false, "settings": { "size": 4 } } ]
Structure (collection)
- idstring
The id of the round.
Example: "618983668512789184"
- stage_idstring
The id of the stage that contains the round.
Example: "618945443132178479"
- group_idstring
The id of the group that contains the round.
Example: "618983668512789184"
- numberinteger
A number used for ordering rounds.
Example: 2
- namestring
The name of the round.
Max. length: 30 characters
Example: "1/8th Finals"
- closedboolean
Whether the round is closed.
Example: false
- settingsobject
Settings that describe the various options related to the round and stage types.
Example: {"size":4}
LegacyGET /tournaments/{tournament_id}/rounds/{id}
This endpoint is in legacy mode. Access will soon be deprecated. It is therefore advised to use another endpoint when possible.
Returns a round with the given id with basic information and settings.
Resource URL
https://api.toornament.com/viewer/v2/tournaments/{tournament_id}/rounds/{id}
HTTP headers
- X-Api-Keystring
API key of your application (see Authentication)
Path parameters
- tournament_idstring
The id of the tournament you want to retrieve data about.
- idstring
The id of the round to retrieve.
Query Parameters
This endpoint does not have any query parameters.
Request Body
This endpoint does not require a request body.
Response
[200] Round retrieved.
Example
{ "id": "618983668512789184", "stage_id": "618945443132178479", "group_id": "618983668512789184", "number": 2, "name": "1\/8th Finals", "closed": false, "settings": { "size": 4 } }
Structure (object)
- idstring
The id of the round.
Example: "618983668512789184"
- stage_idstring
The id of the stage that contains the round.
Example: "618945443132178479"
- group_idstring
The id of the group that contains the round.
Example: "618983668512789184"
- numberinteger
A number used for ordering rounds.
Example: 2
- namestring
The name of the round.
Max. length: 30 characters
Example: "1/8th Finals"
- closedboolean
Whether the round is closed.
Example: false
- settingsobject
Settings that describe the various options related to the round and stage types.
Example: {"size":4}