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

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
lng
string 
required
Language of Partner's client.
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/types/translations?lng=en'

Responses

🟢200Success
application/json
Body
Value
array [object {2}] 
optional
i
number 
required
Game type ID.
t
string 
required
Game type translation.
StatusCode
number 
required
Http status code.
ModelState
object 
optional
Additional properties to error.
ErrorCode
number 
optional
Error code of the response.
Message
string 
optional
Code description.
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