Skip to main content

Fetch Tournament Details

Request

URI: /tournamentDetails

Example usage: https://{base_url}/tournamentDetails

The request is executed using the POST method.

This method is used to retrieve detailed information about a specific tournament.

NameTypeRequiredDescription
Hash-AuthorizationstringYesA hash value generated from the request, used to verify its authenticity
More details can be found here

Request parameters

NameTypeRequiredDescription
tournament_idintegerYesUnique ID of the tournament

Example of a request

Request: /tournamentDetails
{
"tournament_id": 138754
}

Response parameters

NameTypeDescription
idintegerUnique ID of the tournament
namestringName of the tournament
start_datestringTournament start date and time in ISO 8601 format
end_datestringTournament end date and time in ISO 8601 format
statusstringCurrent tournament status: Upcoming, Active
typestringType of tournament: Tournament, Tournament With Drop, Drop Only, FS Tournament, Promo
View description of tournament types Here
urlsobjectContains URLs to campaign-related assets
urls.banner_imagestringURL of the promotional banner image associated with the tournament
urls.campaign_filesstringURL of additional data related to the tournament, such as promo materials
minimum_roundsintegerMinimum number of rounds a player must complete to qualify for the tournament leaderboard and prizes
descriptionstringDescription of the tournament
terms_and_conditionsstringTerms and conditions of the tournament
providerarrayArray with data about the provider initiating the tournament
provider.idintegerID of the provider initiating the tournament
provider.namestringName of the provider initiating the tournament
currenciesarrayList of supported currencies for the tournament
currencies.codestringCurrency code ISO 4217
currencies.namestringCurrency name
countriesarrayList of countries where the tournament is available
countries.codestringCountry code in ISO 3166-1
countries.namestringCountry name
minimum_betarrayMinimum bet required per game round, defined per currency
minimum_wagerarrayMinimum total wager required to be eligible, per currency
periodsarrayList of tournament periods
Each with a start date, end date, and a list of eligible games
periods.start_datestringStart date and time of the period
Date and time in ISO 8601 format
periods.end_datestringEnd date and time of the period
Date and time in ISO 8601 format
periods.gamesarrayList of games included in the period
periods.games.idintegerUnique identifier of the game
periods.games.namestringName of the game
availabilitystringDefines whether the campaign is already assigned to the operator or available for them to join
Values:
  • available - Campaign is available to join but not yet assigned
  • assigned - Operator is already participating in the campaign
  • Example of a successful response

    Response: /tournamentDetails
    {
    "id": 2,
    "name": "Tournament of Champions",
    "start_date": "2025-05-15T00:01:00Z",
    "end_date": "2025-06-15T23:59:00Z",
    "status": "Active",
    "type": "TournamentWithDrop",
    "urls": {
    "banner_image": "https://example.com/image.png",
    "campaign_files": "https://example.com/image.png"
    },
    "minimum_rounds": null,
    "description": "A competitive network campaign hosted by Pragmatic Play and Hollywoodbets where players earned points by placing bets of R3 or more on selected games.",
    "terms_and_conditions": "Players must be 18+, have a Hollywoodbets account, and place a minimum R3 bet on participating games. Prizes included R250,000 in cash and R250,000 in vouchers. Cash paid within 48h, vouchers within two weeks.",
    "provider": {
    "id": 101,
    "name": "Pragmatic Play"
    },
    "currencies": [
    {
    "code": "ZAR",
    "name": "South African Rand"
    }
    ],
    "countries": [
    {
    "code": "ZA",
    "name": "South Africa"
    }
    ],
    "minimum_bet": {
    "ZAR": "3.00"
    },
    "minimum_wager": {
    "ZAR": "3.00"
    },
    "periods": [
    {
    "start_date": "2025-05-15T00:01:00Z",
    "end_date": "2025-06-15T23:59:00Z",
    "games": [
    {
    "id": 1001,
    "name": "Sweet Bonanza"
    },
    {
    "id": 1002,
    "name": "Lucky Lightning"
    },
    {
    "id": 1003,
    "name": "Crown of Fire"
    }
    ]
    }
    ],
    "availability": "assigned"
    }