const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.repromptai.com/v1/{org}/place_enrichment/exports/{export_id}/download', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));