100HP
  1. 100HP Game flow API
100HP
  • 100HP API for partners v2.9.1
    • General
      • Overview
      • FAQ
        • Rollback and billing resolver general flow
        • HTTP status codes and custom error codes
        • IP Whitelisting
    • Integration
      • Preparation for integration
      • General API provision
    • 100HP Gaming API
      • Game list
      • Launch game url
      • Video replay
    • 100HP Game flow API
      • Player authorization
        POST
      • Get balance
        POST
      • Withdrawal money
        POST
      • Deposit money
        POST
      • Rollback money
        POST
    • Implementation Guide
      • YourCasino.js
      • Casino.js
      • TestCasino.js
      • DDL-example
        • mongodb.js
        • mysql.js
        • postgres.js
    • Testing
      • Automated Test Service
    • API INFO
      • API Changelog
  1. 100HP Game flow API

Get balance

POST
/balance
Getting player balance.

Request

Body Params application/jsonRequired

Example
{
    "sessionId": "4affa487-c147-4e48-ae90-903223f17d5b",
    "secret": "<secret>"
}

Request Code Samples

Shell
JavaScript
Java
Go
PHP
Python
Request Request Example
Shell
JavaScript
Java
Go
curl --location 'https://<CASINO_WALLET_URL>/balance' \
--header 'Content-Type: application/json' \
--data '{
  "sessionId": "4affa487-c147-4e48-ae90-903223f17d5b",
  "secret": "<secret>"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "userId": "238798831595029329",
    "currency": "USD",
    "balance": "104.23"
}
🟠400Validation error
⚪601Invalid secret key
⚪604Session not found
⚪702Internal Server Error
Modified at 2026-01-23 17:40:07
Previous
Player authorization
Next
Withdrawal money
Built with