1. 100HP Gaming API
100HP
  • 100HP API for partners v2.9.1
    • General
      • Overview
      • FAQ
        • Rollback and billing resolver general flow
        • IP Whitelisting
    • Integration
      • Preparation for integration
      • General API provision
    • 100HP Gaming API
      • Game list
        GET
      • Launch game url
        POST
      • Video replay
        GET
    • 100HP Game flow API
      • Player authorization
      • Get balance
      • Withdrawal money
      • Deposit money
      • Rollback money
    • 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 Gaming API

Launch game url

POST
{{url}}/games/v1/launch
The method allows partner to get the launch URL.

Request

Body Params application/jsonRequired

Example
{
    "secretKey": "<secret>",
    "sessionId": "4affa487-c147-4e48-ae90-903223f17d5b",
    "isDemo": false,
    "isMobile": false,
    "gameId": "018e513d-bfce-70be-83f9-2f938b954e9b",
    "language": "eng",
    "ip": "8.8.8.8",
    "browser": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36",
    "geo": "DE",
    "partnerId": "Casino№1"
}

Request Code Samples

Shell
JavaScript
Java
Go
PHP
Python
Request Request Example
Shell
JavaScript
Java
Go
curl --location 'https://<GAME_PROVIDER_URL>/games/v1/launch' \
--header 'Content-Type: application/json' \
--data '{
  "secretKey": "<secret>",
  "sessionId": "4affa487-c147-4e48-ae90-903223f17d5b",
  "isDemo": false,
  "isMobile": true,
  "gameId": "018c877c-7f9f-7334-8d0b-df9c7a52dda9",
  "language": "en",
  "ip": "8.8.8.8",
  "browser": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36",
  "geo": "DE"

Responses

🟢200Success
application/json
Body

Example
{
    "gameUrl": "https://100hp.app/4c38e473-7582-4ba6-8de1-e3b6e4369561"
}
🟠400Session already exists
🟠400Unsupported demo for this game
🟠400Unsupported mobile version for this game
🟠400Settings for game marked as hidden
🟠400Request params validation error
🟠401Unauthorized
🟠404Game by id not found
🟠424Partner responded with error
🔴500Internal Server Error
Modified at 2026-03-19 12:15:20
Previous
Game list
Next
Video replay
Built with