Get Game Bet Scales
Request
URI: /getGameBetScales
Example usage: https://{base_url}/getGameBetScales?{parameters}
The request is executed using the GET
method.
Pragmatic uses this parameter to create free spins.
note
This method is still in use but will be removed soon.
The new method for working with free spins is described in Get game bet values
Request parameters
Name | Type | Required | Description |
---|---|---|---|
gameIds | integer | Yes | List of game IDs Bet scales will be returned only for the games included in the list The parameter can take several values separated by commas For example, gameIds = 1 ,2 ,3 ,10 ,22 |
currencies | string | Yes | List of currencies Bet scales will be returned only for the provided currencies The parameter can take several values separated by commas |
Response parameters
Name | Type | Required | Description |
---|---|---|---|
gameId | integer | Yes | Game ID |
betScaleList | array | Yes | Bet scale list |
betScaleList.currency | string | Yes | Bet currency |
betScaleList.betPerLine | array | Yes | Bet per line |
betScaleList.totalBet | array | Yes | Total bet |
Example of a successful response
Response: /getGameBetScales
[
{
"gameId": 1018786,
"betScaleList": [
{
"currency": "EUR",
"betPerLine": [
0.01,
0.02,
0.03,
...
5
],
"totalBet": [
0.2,
0.4,
0.6,
...
100
]
},
{
"currency": "TND",
"betPerLine": [
0.03,
0.06,
0.09,
...
15
],
"totalBet": [
0.6,
1.2,
1.8,
...
300
]
},
]
},
{
"gameId": 1018790,
"betScaleList": [
{
"currency": "EUR",
"betPerLine": [
0.01,
0.02,
0.03,
...
10
],
"totalBet": [
0.1,
0.2,
0.3,
...
100
]
},
{
"currency": "TND",
"betPerLine": [
0.03,
0.06,
0.09,
...
30
],
"totalBet": [
0.3,
0.6,
0.9,
...
300
]
}
]
}
{
"gameId": 1018786,
"betScaleList": [
{
"currency": "EUR",
"betPerLine": [
0.01,
0.02,
0.03,
...
5
],
"totalBet": [
0.2,
0.4,
0.6,
...
100
]
},
{
"currency": "TND",
"betPerLine": [
0.03,
0.06,
0.09,
...
15
],
"totalBet": [
0.6,
1.2,
1.8,
...
300
]
},
]
},
{
"gameId": 1018790,
"betScaleList": [
{
"currency": "EUR",
"betPerLine": [
0.01,
0.02,
0.03,
...
10
],
"totalBet": [
0.1,
0.2,
0.3,
...
100
]
},
{
"currency": "TND",
"betPerLine": [
0.03,
0.06,
0.09,
...
30
],
"totalBet": [
0.3,
0.6,
0.9,
...
300
]
}
]
}
]