Skip to main content

Drop and Win games

Request

URI: /dropWinGames

Example usage: https://{base_url}/dropWinGames?{parameters}

The request is executed using the GET method.

This method is used to get the list of games that participate in Drop&Win tournaments.

Response parameters

NameTypeRequiredDescription
gamesarrayYesArray with list of games and information related to them
games.idintegerYesGame ID
games.namestringYesGame name
games.basicRTPstringYesBase game RTP
Belongs to a higher threshold, if it was received with a lowerRTP
games.lowRTPfloatNoLow game RTP
Belongs to a lower threshold, if it comes with basicRTP
This parameter is used only in Live games
It is required for display of the range, where it is not possible to specify the exact RTP of the game
lowRTP will be included in the responce, if it is configured in the game
games.providerIdintegerYesProvider ID
games.typestringYesType of a game (Live , Slots, Virtuals, TvGames, Poker, SportBook)
games.bonus_buybooleanYesIf true, a bonus can be used in this game
games.periodstringYesDate period in ISO 8601/RFC 3339 format
Basically, it is two ISO 8601 dates joined by a slash /
games.imgstringYesBanner image URL
games.img_verticalstringYesBanner vertical image URL
games.img_providerstringYesDefault image obtained from the provider
games.demobooleanYesIf true, game can be launched in demo-mode (i.e. can also be launched by an unauthorized users)
games.categorystringYesCategory of a game, sent by provider
games.typeIdintegerYesID of game type: 1 - Live, 2 - Slot, 3 - Virtual Games, 4 - TV-games, 5 - Poker, 6 - SportBook, 8 - CryptoGames, 9 - TableGames
games.devicestringYesType of supported user's device (mobile, desktop, all devices)
games.category_iconstringYesDefault category icon
errorsobjectNoDescription of errors in case status = false
errors.errorstringNoError description
Response: /dropWinGames
{
"games": [
{
"id": 1,
"name": "Game Name",
"basicRTP": "0.3",
"lowRTP": "0.1",
"providerId": 6,
"type": "Slot",
"bonus_buy": false,
"period": "2024-09-01T00:00:00Z/2024-09-30T23:59:59Z",
"img": "https://url/game.png",
"img_vertical": "https://url/game.jpg",
"img_provider": "https://url/game.jpg",
"demo": true,
"category": "Slot",
"typeId": 2,
"device": "All device",
"category_icon": "https://example.com"
}
]
}

Example of an unsuccessful response

Response: /dropWinGames
{
"errors": {
"error": "Description"
}
}