Fetch Tournament List
Request
URI: /tournamentList
The request is executed using the POST
method.
This method is used to fetch a list of tournaments based on the specified availability, either campaigns already assigned to the operator or campaigns available for the operator to join.
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 |
---|---|---|---|
availability | integer | Yes | The parameter defines which campaigns are returned when fetching the tournament list Values: available - Returns campaigns that are available for the operator to join but have not yet been assigned assigned - Returns campaigns that the operator is already participating in |
Example of Request
Request: /tournamentList
https://{base_url}/tournamentList?availability=available
Response parameters
Name | Type | Description |
---|---|---|
id | integer | Unique identifier of the tournament |
name | string | Name of the tournament |
start_date | string | Start date and time of the tournament Date and time in ISO 8601 format |
end_date | string | End date and time of the tournament Date and time in ISO 8601 format |
status | string | Current status of the tournament: Upcoming or Active |
type | string | Type of tournament: Tournament , Tournament With Drop , Drop Only , FS Tournament , Promo View description of tournament types Here |
provider | array | Array with data about the provider initiating the tournament |
provider.id | integer | Unique ID of the provider |
provider.name | string | Name of the provider |
currencies | array | Array with the list of supported currencies |
currencies.code | string | Currency code ISO 4217 |
currencies.name | string | Currency name |
countries | array | Array with the list of countries where the tournament is available |
countries.code | string | Country code in ISO 3166-1 |
countries.name | string | Country name |
Example of a successful response
Response: /tournamentList
{
"id": 8,
"name": "Tournament of Champions",
"start_date": "2025-05-15T00:01:00Z",
"end_date": "2025-06-15T23:59:00Z",
"status": "Active",
"type": "TournamentWithDrop",
"provider": {
"id": 101,
"name": "Pragmatic Play"
},
"currencies": [
{
"code": "ZAR",
"name": "South African Rand"
}
],
"countries": [
{
"code": "ZA",
"name": "South Africa"
}
]
}