Code viewer for World: New World
async function get() {
const url = 'https://ai-weather-by-meteosource.p.rapidapi.com/current?lat=53.347311&lon=-6.256792&timezone=auto&language=en&units=auto';
const options = {
	method: 'GET',
	headers: {
		'X-RapidAPI-Key': '6f9a7275a0msh307bfbf770ae5aap199127jsn14c0d405bc2e',
		'X-RapidAPI-Host': 'ai-weather-by-meteosource.p.rapidapi.com'
	}
};

try {
	const response = await fetch(url, options);
	const result = await response.text();
	console.log(result);
} catch (error) {
	console.error(error);
}
}

get();