1. Seamless Wallet API
Hectic Play Integration
  • Getting Started
    • Introduction
    • Request and Response
    • Signature Guide — HMAC-SHA256
  • Base API
    • Game List
      POST
    • Create Player
      POST
    • Start Game
      POST
    • Kick Player
      POST
    • Update Status Player
      POST
  • Seamless Wallet API
    • Get Player Balance
      POST
    • Settle Round
      POST
    • Cancel Round
      POST
  • Report API
    • Get Bet Detail URL
      POST
  • Appendix
    • Game Supported Languages
    • Base API - Response Codes
    • Report API - Response Codes
    • Seamless Wallet Callback API — Response Codes
  • Game
  1. Seamless Wallet API

Get Player Balance

POST
/balance
Query the current balance of a player's wallet.
Signature data: {currency}:{playerUsername}
Called before game sessions to verify player has sufficient funds.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Balance retrieved successfully
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/balance' \
--header 'Accept-Language;' \
--header 'X-PUBLIC-KEY;' \
--header 'X-TIMESTAMP;' \
--header 'X-SIGNATURE;' \
--header 'X-Request-ID;' \
--header 'Content-Type: application/json' \
--data '{
    "playerUsername": "johndoe123",
    "currency": "USD"
}'
Response Response Example
Successful balance query
{
    "status": "0000",
    "balance": 1500.5
}
Modified at 2026-03-20 14:36:20
Previous
Update Status Player
Next
Settle Round
Built with