Skip to main content

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
FieldTypeDescription
walletIdstringrequiredPlatform wallet identifier, provided by NeverEnding
operatorIdstringrequiredYour operator identifier
gamesarray<string>requiredList of game slugs to retrieve bet options for
currenciesarray<string>requiredList 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
FieldTypeDescription
{gameSlug}objectTop-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