Players & arenas API

Players and arenas form basic building blocks for tournaments.

Match Play APIs will generally only respond with the player id or the arena id for performance reasons. Separate API requests are necessary to receive the underlying player and arena objects.

When fetching a tournament set includePlayers=true and includeArenas=true to receive the initial set of players and arenas for the tournament. If you subsequently are exposed to unknown player or arena ids you can use the APIs on this page to resolve them.

Resolve unknown arenas

GET /api/arenas/resolve-unknown

Provide a comma-separated list of arena ids and receive the arena objects.

Query params

Name
Description

arenas (string)

Comma-separated list of arena ids. Provide no more than 25 ids.

Resolve unknown players

GET /api/players/resolve-unknown

Provide a comma-separated list of player ids and receive the player objects.

Query params

Name
Description

players (string)

Comma-separated list of player ids. Provide no more than 25 ids.

Resolve unknown tournament arenas

GET /api/tournaments/{tournamentId}/arenas/resolve-unknown

Provide a comma-separated list of arena ids and receive the arena objects including pivot data for the specific tournament (like arena labels and active/inactive status).

Query params

Name
Description

arenas (string)

Comma-separated list of arena ids. Provide no more than 25 ids.

Resolve unknown tournament players

Provide a comma-separated list of player ids and receive the player objects including pivot data for the specific tournament (like player labels, seeding and active/inactive status).

Query params

Name
Description

players (string)

Comma-separated list of player ids. Provide no more than 25 ids.

Last updated