◾Games catalog API


Last updated
Was this helpful?
Was this helpful?
[
{
"id": 123,
"name": "Super slot",
"link": "https://sone.com/game1",
"image": "https://some.com/1.png",
"enabled": true,
"game_categories": [
{ "id": 22, "name": "Slots" },
{ "id": 23, "name": "Live" }
],
"game_provider": "RTG",
"game_provider_id": 33,
},
{
"id": 124,
"name": "Super slot 2",
"link": "https://sone.com/game1",
"image": "https://some.com/1.png",
"enabled": true,
"game_categories": [
{ "id": 24, "name": "Poker" }
],
"game_provider": "Playtech",
"game_provider_id": 34,
},
....
]_smartico.on('ach_game_opening', (r) => console.log(r));
// the r object will have information about the game in the followign format
r = {
"ach_game_id": 32, // ID of the game on smartico side
"game_public_meta": {
"image": "https://mysite.com/images/card_2x/1x2gaming-InstantFootball-1674738298.jpg",
"name": "Instant Football",
"enabled": true
},
"ext_game_id": "56", // the ID of the game on the provider side
"context": "mission" // context of the callback - mission or tournament
};