Game Bets
Retrieve available bet amounts per game and currency.
POST /game-bets
POST{provider endpoint}/game-bets
Returns the list of available bet amounts for specified games and currencies.
Request
Headers: X-Server-Authorization: hmac_sha256_hash
{
"walletId": "777casino-platform",
"operatorId": "777casino-uk",
"games": ["firefruit-sevens-classic"],
"currencies": ["eur", "pln"]
}
Request Parameters
| Field | Type | Description | |
|---|---|---|---|
| walletId | string | required | Platform wallet identifier, provided by NeverEnding |
| operatorId | string | required | Your operator identifier |
| games | array<string> | required | List of game slugs to retrieve bet options for |
| currencies | array<string> | required | List of ISO 4217 currency codes to retrieve bet amounts for |
Response
✓ 200 OK
{
"firefruit-sevens-classic": {
"eur": [1, 2, 3],
"pln": [4, 5, 6]
}
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| {gameSlug} | object | Top-level key is the game slug. Value is an object keyed by currency code |
| {gameSlug}.{currency} | array<number> | Ordered list of available bet amounts for that game and currency combination |