CoinvalueLevels() API
This API request enables the operator to fetch the coin values of all supported currencies for promo free spins. Values present in bet_values object are the ones that are used for wagering and same values are shown in the game UI. These coin values are in cents.
POST /more/pfs-bet-values/
JSON
Host: https://test-api.netgaming.com/v1/
{
"api_key": "1pghjl4v5apt2bks",
"game_id": 6,
"currency": "EUR"
}
| Parameters | Type | Description |
| api_key | String | API Key allocated to each frontend |
| game_id | Integer | Please send the game ID, Operator can also find the game ID in get_games() API response. |
| currency | String( Optional) | If currency param passes, only given currency response will be returned in the response, other wise all currencies data will be returned in the response. |
Response Example
{
"result": {
"game_name": "leprechaunsloot",
"game_id": 6,
"title": "Leprechaun's Loot",
"bet_values": [{
"AMD": [15000, 30000, 45000, 60000, 75000],
"ARS": [900, 1800, 2700, 3600, 4500],
"AUD": [30, 60, 90, 120, 150],
"BGN": [30, 60, 90, 120, 150],
"BRL": [150, 300, 450, 600, 750],
"CAD": [30, 60, 90, 120, 150]
}]
}
}
| Parameters | Type | Description |
| result | JSON Object | This JSON object will contain the info all the bet values |
| game_name | String | Name of the game |
| game_id | Integer | Providers game ID |
| title | String | Tilte of the game |
| bet_values | JSON Object[List] | This JSON object will contain all the bet values currency wise. |