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
  1. Games

Translations

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

Overview#

The Translations endpoint allows Partners to retrieve localized translations for BETCORE game types. This enables Partners to display game names in the user's preferred language, enhancing the user experience.The main objectives of this method are:
Localization Support: To provide Partners with the ability to display TVBET game types in multiple languages.
Dynamic Translation Retrieval: To allow Partners to dynamically retrieve the latest translations, ensuring accuracy and consistency.
Game Type Identification: To map game type IDs to their corresponding translated names.

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/types/translations?lng=en' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "Value": [
    {
      "i": 22,
      "t": "Roulette"
    },
    {
      "i": 3,
      "t": "Poker"
    },
    {
      "i": 19,
      "t": "BlackJack"
    },
  ],
  "StatusCode": 200,
  "ModelState": {},
  "ErrorCode": 0,
  "Message": ""
}
Previous
Info
Next
Accumulated
Built with