100HP
  1. 100HP Gaming 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
        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
/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": 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"
}

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-01-23 17:40:17
Previous
Game list
Next
Video replay
Built with