get https://integrations.getravenbank.com/v1/bet_types
With this endpoint, you can retrieve all betting platforms currently supported by Raven atlas as shown in the example below
Example Request
var axios = require('axios');
var config = {
method: 'get',
url: 'https://integrations.getravenbank.com/v1/bet_types',
headers: { }
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
Example Response
{
"status": "success",
"message": "Bet collection retrieved",
"data": [
"Bet9ja",
"BangBet",
"NairaBet",
"SupaBet",
"CloudBet",
"BetLion",
"1xBet",
"MerryBet",
"BetWay",
"BetLand",
"BetKing",
"LiveScoreBet",
"NaijaBet"
]
}