Appearance
Get BetLimits GET
GET Optional Get bet limit (Live casino only).
Authorization
Seamless uses Basic Authentication with your agent credentials. (Authentication)
HTTP Request
GET {{ API_URL }}/seamless/betLimitsV2?productId={{ productId }}Content Type
Type: application/json
Parameter Description
| Property | Type | Required | Description |
|---|---|---|---|
productId | string | Required | Product ID (Ref. Product List)) (Example : PRETTY) |
Remark
Product: SAGAME
During the login process, the client can set any bet limit value. However, once entering the game lobby, there are 2 games where the bet limit will revert to the default value set by the game provider due to provider limitations.
Affected Games:
- Carnival Treasure
- Deluxe Blackjack
JSON response example:
json
{
"reqId": "395e9c4d-be1f-403d-b58a-e3e1ce4b7251",
"code": 0,
"message": "Success",
"data": [
{
"productId": "PRETTY",
"BetLimit": [
{
"limit": 1,
"Min": 5,
"Max": 2000
},
{
"limit": 2,
"Min": 50,
"Max": 5000
},
{
"limit": 3,
"Min": 100,
"Max": 20000
}
]
}
]
}