8.1 getJackpotFeeds

Retrieves the list of games enabled for your agent and their jackpot values.

Please note, that the jackpot feeds are being updated dynamically as jackpot values change, so you should call function getJackpotFeeds at least on daily basis. If you are already calling getGameList, you can also add another parameter there to get the jackpot values inside the data with all games available to you (Example bellow)

Please note, that the jackpot feeds are being updated dynamically as jackpot values change, so you should call function getJackpotFeeds at least on daily basis. If you are already calling getGameList, you can also add another parameter there to get the jackpot values inside the data with all games available to you (Example bellow)


Additional parameter needed in getGameList request is “show_jackpot_feed”:

{ "api_password": "xapitest", "api_login": "xapitest", "method": "getGameList", "show_jackpot_feed": true, "currency": "EUR" }

Example response for game that has data for Jackpot available:

... { "id": "2897", "name": "Cosmic Fortune", "type": "video-slots", "subcategory": "_netent", "details": "{\"lines\":\"15\",\"reels\":\"5\",\"freespins\":\"yes\",\"bonusgame\":\"yes\"}", "new": "0", "system": "ne", "position": "500", "category": "net-ent", "licence": "MGA", "plays": "127", "rtp": "97", "wagering": null, "gamename": "cosmic-fortune.desktop", "report": "ne", "id_hash": "ne_ne-cosmic-fortune", "id_parent": "0", "id_hash_parent": "", "freerounds_supported": true, "has_jackpot": true, "jackpotfeed": [ "535.106250", "4615.850793", "100.000000", "500.000000" ], "mobile": false, "play_for_fun_supported": true, "image": "https:\/\/dev.pantaloo.com\/media\/images\/slots\/small\/ne\/ne-cosmic-fortune.png", "image_preview": "https:\/\/dev.pantaloo.com\/media\/images\/popup\/ne-cosmic-fortune.jpg", "image_filled": "https:\/\/dev.pantaloo.com\/media\/images\/slots\/small\/ne\/jpg\/ne-cosmic-fortune.jpg", "image_background": "https:\/\/dev.pantaloo.com\/media\/images\/backgrounds\/ne\/ne-cosmic-fortune.jpg", "image_bw": "\/media\/images\/slots\/small\/ne\/ne-cosmic-fortune.png" }, ...

If game is a jackpot game, but there is no jackpot data available for it, “jackpotfeed” field will be empty string ("jackpotfeed": "",)

If you would rather call separate function to fetch just a list of games that have jackpot data, you can simply call method “getJackpotFeeds”:

{ "api_password": "xapitest", "api_login": "xapitest", "method": "getJackpotFeeds", "return_gameids":false, "currency": "EUR", "return_all_currencies":true //optional parameter to return response for all agent currencies it takes longer }

 

Parameter “return_all_currencies” is optional, and if you set it to true, we will return you jackpotfeeds for all currencies configured under your agent. The response might take longer - up to 20s to be returned. It is suggested you do not call it regularly, since jackpots are updated once per day.

Parameter “return_gameids” is optional, and if you set it to true, we will return you games identified by id’s you potentially use to start games. If you are starting our games by titles, to identify games, ommiting this will return you gamehashes and their jackpot values. Example comparison:

Request:

Response example:

 

Request:

Response example:

Full response example: