1. Report 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. Report API

Get Bet Detail URL

POST
/capi/report/bet-detail-url
Generate a temporary URL to view bet round details.
Signature fields: roundID
Returns a URL with a temporary token (5-minute TTL) that can be used to view
the bet detail page. Only returns URLs for bets belonging to the authenticated agent.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Bet detail URL generated
Bodyapplication/json

🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/capi/report/bet-detail-url' \
--header 'X-PUBLIC-KEY;' \
--header 'X-TIMESTAMP;' \
--header 'X-SIGNATURE;' \
--header 'Accept-Language;' \
--header 'Content-Type: application/json' \
--data '{
    "roundID": "roundID"
}'
Response Response Example
200 - Success
{
    "status": "0000",
    "msg": "Success.",
    "data": {
        "url": "https://betdetail.example.com/rounddetail/temp-token-abc123"
    }
}
Modified at 2026-08-21 16:34:39
Previous
Cancel Round
Next
Game Supported Languages
Built with