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.
Header
Name | Type | Required | Description |
---|---|---|---|
Hash-Authorization | string | Yes | A hash value generated from the request, used to verify its authenticity More details can be found here |
Request parameters
Name | Type | Required | Description |
---|---|---|---|
tournament_id | integer | Yes | Unique ID of the tournament |
Example of a request
Request: /tournamentDetails
{
"tournament_id": 138754
}
Response parameters
Name | Type | Description |
---|---|---|
id | integer | Unique ID of the tournament |
name | string | Name of the tournament |
start_date | string | Tournament start date and time in ISO 8601 format |
end_date | string | Tournament end date and time in ISO 8601 format |
status | string | Current tournament status: Upcoming , Active |
type | string | Type of tournament: Tournament , Tournament With Drop , Drop Only , FS Tournament , Promo View description of tournament types Here |
urls | object | Contains URLs to campaign-related assets |
urls.banner_image | string | URL of the promotional banner image associated with the tournament |
urls.campaign_files | string | URL of additional data related to the tournament, such as promo materials |
minimum_rounds | integer | Minimum number of rounds a player must complete to qualify for the tournament leaderboard and prizes |
description | string | Description of the tournament |
terms_and_conditions | string | Terms and conditions of the tournament |
provider | array | Array with data about the provider initiating the tournament |
provider.id | integer | ID of the provider initiating the tournament |
provider.name | string | Name of the provider initiating the tournament |
currencies | array | List of supported currencies for the tournament |
currencies.code | string | Currency code ISO 4217 |
currencies.name | string | Currency name |
countries | array | List of countries where the tournament is available |
countries.code | string | Country code in ISO 3166-1 |
countries.name | string | Country name |
minimum_bet | array | Minimum bet required per game round, defined per currency |
minimum_wager | array | Minimum total wager required to be eligible, per currency |
periods | array | List of tournament periods Each with a start date, end date, and a list of eligible games |
periods.start_date | string | Start date and time of the period Date and time in ISO 8601 format |
periods.end_date | string | End date and time of the period Date and time in ISO 8601 format |
periods.games | array | List of games included in the period |
periods.games.id | integer | Unique identifier of the game |
periods.games.name | string | Name of the game |
availability | string | Defines 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"
}