const options = {
method: 'GET',
headers: {'X-Publishable-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://{host}/extern/fe/intent/discovery/withdraw/destinations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));