Airtime Countries

/info/airtime-countries

You might want to get a list of supported countries to send Airtime to, here is how to it, Chief πŸ˜‰

GET https://live.chimoney.io/api/v0.1/info/airtime-countries

Get a list of supported countries to send Airtime to

Headers

Name
Type
Description

X-API-Key*

API_KEY_FROM_DEV_PORTAL

{
    // transaction detail
}

#Javascript FETCH

var myHeaders = new Headers();
myHeaders.append("X-API-Key", "API_KEY_FROM_DEV_PORTAL");

var requestOptions = {
  method: 'GET',
  headers: myHeaders,
  redirect: 'follow'
};

fetch("https://live.chimoney.io/api/v0.1/info/airtime-countries", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));

#Python REQUESTS

#PHP cURL

Last updated