const config = {
  url: '<https://api.example.com>',
  method: 'GET',
  headers: {
    'Content-Type': 'application/json'
  }
};

fetch(config.url, config)
  .then(response => response.json())
  .then(data => console.log(data));