BETCORE Aggregator
Provider IntegrationCasino IntegrationFeed Integration
Provider IntegrationCasino IntegrationFeed Integration
Visit Betcore website
Follow Betcore on Instagram
Follow Betcore on LinkedIn
Follow Betcore on Youtube
  1. Games
  • PLEASE READ: Getting Started
  • Integrate BETCORE Games
    • Integrate BETCORE Games
    • WebFrame Connection
    • BETCORE API
      • Authentication
        • Token
          POST
        • Verify
          POST
        • Jwks
          GET
      • Payments
        • Accept
          POST
      • Cashback
        • Accept
          POST
    • PARTNER API
      • Users
        • Auth
          POST
        • Data
          POST
      • Payments
        • Info
          POST
        • Make
          POST
        • Make-list
          POST
        • Close
          POST
      • Cashback
        • Make
          POST
  • Integrate YOUR Games
    • Integrate as Games Provider
    • PARTNER API
      • Games
        • Games
          GET
        • Launch
          POST
    • BETCORE API
      • Get Balance
        • Balance
          GET
      • Bets
        • PayIn
          POST
        • PayOut
          POST
        • PayInOut
          POST
        • Refund
          POST
  • Feed Integration
    • Feed Integration
    • REST API
      • Authorization
        • Token
          POST
      • Games
        • List
          GET
        • Info
          GET
        • Translations
          GET
      • Jackpot
        • Accumulated
          GET
    • Websocket
      • SubOnWholeGamesInfo
Provider IntegrationCasino IntegrationFeed Integration
Provider IntegrationCasino IntegrationFeed Integration
Visit Betcore website
Follow Betcore on Instagram
Follow Betcore on LinkedIn
Follow Betcore on Youtube
  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

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/backend.bcdprod.net/feeds-service/api/v1/games/info?ids=90000700319&lng=en' \
--header 'Authorization: Bearer <token>'
Response Response 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
List
Next
Translations
Built with