Bet Levels

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
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
  ]
}

Last updated