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 API
    • 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 API
      • Launch Game in Demo Mode
      • Launch Game in Real Mode
  • 🎲Game Events
    • Balance
    • Bet
    • Win
    • Refund
  • 📖Addendum
    • TBB Error Codes
Powered by GitBook
On this page
  1. Game Insights

Get Game Bet Levels

PreviousGame InsightsNextGet Round Info

Last updated 9 days ago

🎮
get

Retrieve the valid bet levels for a given game and currency. These values should be used as the amount (in subunits) when creating free spins.

Query parameters
currencystringRequired

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

referencestringRequired

Game reference identifier, e.g. 1spin4win:wolf-spins-243.

Responses
200
List of valid bet levels for the specified game and currency.
application/json
503
Service Unavailable.
application/json
get
GET /api/casino/games/bet/levels?currency=text&reference=text HTTP/1.1
Host: 
Accept: */*
{
  "bet_levels": [
    0.01,
    0.1,
    0.5,
    1,
    2,
    5,
    10
  ]
}