Skip to content

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

PropertyTypeRequiredDescription
productIdstringRequiredProduct ID (Ref. Product List)) (Example : SAGAME)

JSON response example:

json
{
  "reqId": "395e9c4d-be1f-403d-b58a-e3e1ce4b7250",
  "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
        }
      ]
    }
  ]
}