BETCORE Aggregator
Provider IntegrationCasino Integration
Provider IntegrationCasino Integration
Visit Betcore website
Follow Betcore on Instagram
Follow Betcore on LinkedIn
Follow Betcore on Youtube
  1. Games
  • Getting Started
  • Integrate BETCORE Games (Casino)
    • Integrate BETCORE Gems (Casino)
    • WebFrame Connection
    • Aggregator API for Casino
      • Authentication
        • Verify
        • Jwks
        • Token
      • Payments
        • Accept
      • Cashback
        • Accept
    • Casino API for Aggregator
      • Users
        • Auth
        • Data
      • Payments
        • Info
        • Make
        • Make-list
        • Close
      • Cashback
        • Make
  • Integrate as Games Provider
    • Integrate as Games Provider
    • Provider API for Aggregator
      • Games
        • Games
        • Launch
    • Aggregator API for Provider
      • Get Balance
        • Balance
      • Bets
        • PayIn
        • PayOut
        • PayInOut
        • Refund
  • Feed
    • Feed Integration
    • REST API
      • Authorization
        • Token
      • Games
        • Info
          GET
        • Translations
          GET
      • Jackpot
        • Accumulated
    • Websocket
      • SubOnWholeGamesInfo
  • SubOnWholeGamesInfo
  1. Games

Info

GET
/backend.bcdprod.net/feeds-service/api/v1/games/info

Overview#

The Info endpoint allows Partners to retrieve information about specific BETCORE games by their IDs. This provides details about the game state, results, and other relevant data.The main objectives of this method are:
Game Data Retrieval: To provide Partners with the information about the state of games.
Game Identification: To allow Partners to request information about specific games using their unique IDs.
Data Enrichment: To provide detailed information including game state, results, hands, and other game-specific data points.
Localization: To support multiple languages through the lng parameter, allowing Partners to display game information in the user's preferred language.

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params
ids
number 
required
Game IDs (not more than 50 items).
Example:
90000700319
lng
string 
required
Partner's client language.
Example:
en

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mock.apidog.com/m1/820627-0-default/backend.bcdprod.net/feeds-service/api/v1/games/info?ids=90000700319&lng=en'

Responses

🟢200Success
application/json
Body
Value
object 
required
i
number 
required
Game ID. Internal game identifier (BETCORE).
t
number 
required
Game type. Game identifier. For example: 3 (Poker).
ge
string 
required
Game edition. Global/public game identifier.
s
number 
required
Game state:
1- Awaiting
2 - Active
3 - Finished
4 - Review
5 - Cancelled
cr
number 
required
Game current round.
sts
number 
required
Game start date and time. Unix.
fts
number 
required
Game finish date and time. Unix.
r
array[string]
required
Results. The array contains all the values dropped in the game.
gr
array [object {6}] 
required
Game results.
rsi
array [object {8}] 
required
Results Info.
Please note, that the rsi array contains the same thing as the gr (Game results) array.
h
array [object {4}] 
required
Hands.
c
array[string]
required
Combinations. Uses for games: TeenPatti and Poker.
seven
boolean 
required
Coincidence Seven.
counter
number 
required
Coincidence Counter.
delay
number 
required
Delay between born and save result in game.
wr
array [object {6}] 
required
Win results. Returns winner results.
Example
{
    "Value": [
        {
            "i": 190001150259,
            "ge": "BJ920542",
            "t": 19,
            "s": 3,
            "sts": 1739968726,
            "fts": 1739968797,
            "cr": 2,
            "r": [
                "2c",
                "2d",
                "3c",
                "4c",
                "5h",
                "kc",
                "kh"
            ],
            "gr": [
                {
                    "sn": 1,
                    "v": "2c",
                    "gi": 190001150259,
                    "r": null,
                    "h": false
                },
                {
                    "sn": 2,
                    "v": "2d",
                    "gi": 190001150259,
                    "r": null,
                    "h": false
                },
                {
                    "sn": 3,
                    "v": "3c",
                    "gi": 190001150259,
                    "r": null,
                    "h": false
                },
                {
                    "sn": 4,
                    "v": "4c",
                    "gi": 190001150259,
                    "r": null,
                    "h": false
                },
                {
                    "sn": 7,
                    "v": "5h",
                    "gi": 190001150259,
                    "r": null,
                    "h": false
                },
                {
                    "sn": 8,
                    "v": "kc",
                    "gi": 190001150259,
                    "r": null,
                    "h": false
                },
                {
                    "sn": 9,
                    "v": "kh",
                    "gi": 190001150259,
                    "r": null,
                    "h": false
                }
            ],
            "rsi": [
                {
                    "v": "2c",
                    "hi": 1,
                    "ra": null,
                    "ri": 1,
                    "s": 1,
                    "sn": 1,
                    "vi": null,
                    "h": false
                },
                {
                    "v": "2d",
                    "hi": 2,
                    "ra": null,
                    "ri": 1,
                    "s": 1,
                    "sn": 2,
                    "vi": null,
                    "h": false
                },
                {
                    "v": "3c",
                    "hi": 1,
                    "ra": null,
                    "ri": 1,
                    "s": 1,
                    "sn": 3,
                    "vi": null,
                    "h": false
                },
                {
                    "v": "4c",
                    "hi": 1,
                    "ra": null,
                    "ri": 2,
                    "s": 1,
                    "sn": 4,
                    "vi": null,
                    "h": false
                },
                {
                    "v": "5h",
                    "hi": 1,
                    "ra": null,
                    "ri": 2,
                    "s": 1,
                    "sn": 7,
                    "vi": null,
                    "h": false
                },
                {
                    "v": "kc",
                    "hi": 1,
                    "ra": null,
                    "ri": 2,
                    "s": 1,
                    "sn": 8,
                    "vi": null,
                    "h": false
                },
                {
                    "v": "kh",
                    "hi": 2,
                    "ra": null,
                    "ri": 2,
                    "s": 1,
                    "sn": 9,
                    "vi": null,
                    "h": false
                }
            ],
            "h": [
                {
                    "i": 1,
                    "r": [
                        "2c",
                        "3c",
                        "4c",
                        "5h",
                        "kc"
                    ],
                    "s": 0,
                    "p": 24
                },
                {
                    "i": 2,
                    "r": [
                        "2d",
                        "kh"
                    ],
                    "s": 0,
                    "p": 12
                }
            ],
            "wr": null,
            "delay": 0.574
        }
    ],
    "StatusCode": 200,
    "ModelState": null,
    "ErrorCode": 200,
    "Message": "Success"
}
Previous
Token
Next
Translations
Built with