How do I find a Tournament or Participant ID?

Updated by Geoffroy "Vomact" Piot

OG-KB

On Toornament, every single entity has a unique identifier, would it be a tournament, any part of its structure (from the stages to the matches) or its participants (with their registrations). These IDs are used in the API, and are interchangeable when you navigate the website.
To retrieve the ID of an entity, you just have to gather the string of numbers that follows the name of the entity you are looking for.

For example, if you need the ID of a tournament, simply retrieve the string of numbers directly following "tournaments" in the URL:

https://www.toornament.com/tournaments/2126979969372332032


As such, here is the cascade of IDs leading to a single round (with a line break for readability):

https://www.toornament.com/tournaments/2126979969372332032/stages/2126995033935364096
/groups/2126995035109769233 /rounds/2138380628887904304

The very same logic applies to participants:

https://www.toornament.com/tournaments/2126979969372332032/participants/2126982465861640192/


How did we do?