A unique identifier associated with operator calling API.
A SHA256 HMAC signature generated using the request body and timestamp.
Format: HMAC_SHA256(JSON.stringify(data) + ’|’ + timestamp), signed using the
provided secret key.
An Unix timestamp (milliseconds) Used to verify the request’s freshness.
Ensure the same value is used in signature generation.The signature will remain valid for only 5 minutes from the provided
timestamp.
Must be set to application/json.
Request Body
Currency code (Example : USD,TRY)
Response
Allowed bet amount list as per currency.
To maintain precision and avoid floating-point errors, the allowedBets field is processed as an integer value by multiplying the actual amount by 100000.For example, a allowedBets of 12.34567 will be represented as 1234567 in the API.
This is the expected response from a successful Launch Game request.