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
Name | Type | Required | Description |
---|---|---|---|
games | array | Yes | Array with the list of games and information related to them |
games.id | integer | Yes | Game ID |
games.name | string | Yes | Game name |
games.basicRTP | string | Yes | Base game RTP Belongs to a higher threshold if it was received with a lowerRTP |
games.lowRTP | float | No | Low game RTP Belongs to a lower threshold if it comes with basicRTP This parameter is used only in Live games It is required to display the range where it is not possible to specify the exact RTP of the game lowRTP will be included in the response if it is configured in the game |
games.providerId | integer | Yes | Provider ID |
games.type | string | Yes | Type of the game (Live , Slots , Virtuals , TvGames , Poker , SportBook ) |
games.bonus_buy | boolean | Yes | If true , a bonus can be used in this game |
games.period | string | Yes | Date period in ISO 8601 /RFC 3339 format Basically, it is two ISO 8601 dates joined by a slash / |
games.img | string | Yes | Banner image URL |
games.img_vertical | string | Yes | Banner vertical image URL |
games.img_provider | string | Yes | Default image obtained from the provider |
games.demo | boolean | Yes | If true , the game can be launched in demo mode (i.e., it can also be launched by unauthorized users) |
games.category | string | Yes | Category of the game, sent by the provider |
games.typeId | integer | Yes | ID of the game type: 1 - Live, 2 - Slot, 3 - Virtual Games, 4 - TV-games, 5 - Poker, 6 - SportBook, 8 - CryptoGames, 9 - TableGames |
games.device | string | Yes | Type of supported user device (mobile , desktop , all devices ) |
games.category_icon | string | Yes | Default category icon |
errors | object | No | Description of errors in case status = false |
errors.error | string | No | Error 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"
}
}