const url = 'https://api.maalbar.dk/v1/screenings/{screeningPublicId}/tags';
const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));