The Bet Brothers
HomeNewsLinkedIn
  • The Bet Brothers APIS
    • 🧩Core Concepts
    • 🔁API Flow
  • OPERATOR API
    • 🔗Operator Integration Service
    • 🔑Protocol API
      • Create api-token
      • Revoke api-token
  • 🚀Game Launcher
    • Get Game Providers
    • Get Games
    • Launch Game in Demo Mode
    • Launch game in Real Mode
  • 💰Wallet API
    • Balance
    • Bet
    • Win
    • Refund
    • Rollback Win
  • ⚡Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • 🎮Game Insights
    • Get Game Bet Levels
    • Get Round Info
  • 📖Addendum
    • TBB Error Codes
    • Wallet Error Response
  • SUPPLIER API
    • 🔗Supplier Integration Service
    • 🔑Supplier Protocol API
    • 🚀Game Launcher
      • Launch Game in Demo Mode
      • Launch Game in Real Mode
  • 🎲Game Events
    • Balance
    • Bet
    • Win
    • Refund
  • 🎮Game Insights
    • Bet Levels
    • Round Info
  • ⚡Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • 📖Addendum
    • TBB Error Codes
Powered by GitBook
On this page
  1. Game Insights

Bet Levels

PreviousGame InsightsNextRound Info

Last updated 5 days ago

The Bet Brothers platform sends a request to the Supplier to retrieve valid bet levels for the specified game and currency. If the Supplier supports only a minimum bet amount, only that amount must be returned.

🎮
post

Retrieve valid bet levels (decimal values) for a specified game and currency.

Header parameters
X-REQUEST-SIGNstringRequired

HMAC-SHA256 signature of the request body using the shared password.

Body
provider_namestringRequired

Name of the supplier.

provider_idintegerRequired

Unique identifier for the supplier.

game_symbolstringRequired

Game symbol for the requested game.

currency_codestringRequired

Currency code in ISO 4217 format (e.g., EUR).

brand_idintegerRequired

Unique identifier of the brand on The Bet Brothers platform.

Responses
200
List of valid bet levels for the specified game and currency in decimals.
application/json
403
Forbidden - signature does not match.
application/json
post
POST /supplier_api/bet/levels HTTP/1.1
Host: 
X-REQUEST-SIGN: text
Content-Type: application/json
Accept: */*
Content-Length: 104

{
  "provider_name": "test",
  "provider_id": 19,
  "game_symbol": "MadMonkey",
  "currency_code": "EUR",
  "brand_id": 100
}
{
  "status": "success",
  "bet_levels": [
    0.01,
    0.1,
    0.5,
    1,
    2,
    5,
    10
  ]
}