The Bet Brothers
HomeNewsLinkedIn
  • The Bet Brothers APIS
    • 🧩Core Concepts
    • 🔁API Flow
  • OPERATOR API
    • 🔗Operator Integration Service
    • 🔑Protocol API
      • Create api-token
      • Revoke api-token
  • 🚀Game Launcher
    • Get Game Providers
    • Get Games
    • Launch Game in Demo Mode
    • Launch game in Real Mode
  • 💰Wallet API
    • Balance
    • Bet
    • Win
    • Refund
    • Rollback Win
  • ⚡Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • 🎮Game Insights
    • Get Game Bet Levels
    • Get Round Info
  • 📖Addendum
    • TBB Error Codes
    • Wallet Error Response
  • SUPPLIER API
    • 🔗Supplier Integration Service
    • 🔑Supplier Protocol API
    • 🚀Game Launcher
      • Launch Game in Demo Mode
      • Launch Game in Real Mode
  • 🎲Game Events
    • Balance
    • Bet
    • Win
    • Refund
  • 🎮Game Insights
    • Bet Levels
    • Round Info
  • ⚡Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • 📖Addendum
    • TBB Error Codes
Powered by GitBook
On this page
  1. Game Insights

Round Info

PreviousBet LevelsNextFree Spin API

Last updated 5 days ago

The Bet Brothers platform requests the historical game graphic link for a given round ID from the Supplier.

🎮
post

Retrieve the historical game graphic link for a specific round ID.

Header parameters
X-REQUEST-SIGNstringRequired

HMAC-SHA256 signature of the request body using the shared password.

Body
provider_namestringRequired

Name of the supplier.

provider_idintegerRequired

Unique identifier of the supplier.

game_symbolstringRequired

Identifier of the game played in the round.

round_idstringRequired

Unique identifier of the round.

brand_idintegerRequired

Unique identifier of the brand on The Bet Brothers platform.

Responses
200
Historical game graphic link successfully retrieved.
application/json
403
Forbidden.Signature does not match.
application/json
post
POST /supplier_api/round/history-graphic HTTP/1.1
Host: 
X-REQUEST-SIGN: text
Content-Type: application/json
Accept: */*
Content-Length: 99

{
  "provider_name": "test",
  "provider_id": 19,
  "game_symbol": "MadMonkey",
  "round_id": "123",
  "brand_id": 100
}
{
  "status": "success",
  "url": "https://url.com"
}