Hypetech Parceiros
InícioHypetech Games
InícioHypetech Games
  1. Acessing games
  • Overview
  • About Hypetech API
  • Error Handling
  • APIs
    • Setup
      • Overview
      • Signature Verification
    • Webhook
      • Hooks Bet
      • Register Bet
      • Register Earnings
      • Rollback Bet
      • Balance
    • Sessions
      • Session Transactions
      • Active Sessions
    • Acessing games
      • Get Game List
        POST
      • Get Game URL
        POST
    • Promocional
      • Free bet
        • Redeem Free Bet
  • Esquemas
    • Bet placing response
  1. Acessing games

Get Game URL

POST
/games/request-access
This endpoint returns a URL that allows a user of the customer platform to place bets. Each URL is unique and contains user session information; they expire as soon as the user logs in for the first time to ensure their security.
Before using this endpoint, make sure that all hooks related to balance checking and betting are configured correctly.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://player.api.hypetech.games/games/request-access' \
--header 'Content-Type: application/json' \
--data-raw '{
    "game": "rocket",
    "user_id": "99e27bf0-35da-46e2-a82d-07c492d1ed25",
    "lang": "pt",
    "balance": "20.00",
    "currency": "USD",
    "username": "Jhon Doe",
    "avatar_url": "https://gravatar.com/avatar/example"
}'
Response Response Example
200 - Response sample
{
    "game_url": "https://server.hypetech.games/aviator/session"
}

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros Bodyapplication/json

Examples

Respostas

🟢200Success
application/json
Body

🟠401Not authorized
🟠404Route not found
🔴500Internal server error
Modificado em 2025-08-06 15:57:52
Página anterior
Get Game List
Próxima página
Redeem Free Bet