curl --request GET \
--url https://api.example.com/cabinet/contests/{round_id} \
--header 'Authorization: Bearer <token>'{
"round_id": 123,
"game_type": "<string>",
"game_data": {},
"instructions": "<string>"
}Get game data for a specific contest round.
curl --request GET \
--url https://api.example.com/cabinet/contests/{round_id} \
--header 'Authorization: Bearer <token>'{
"round_id": 123,
"game_type": "<string>",
"game_data": {},
"instructions": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.