Zintzilik Irratia
Oreretako irrati librea
Zuzenean:
Cargando…
Azken audioak
async function loadNowPlaying() {
try {
const res = await fetch(«https://aizu.maritxusarea.eus/api/nowplaying/zintzilik_irratia»);
const data = await res.json();
// Canción actual
document.getElementById(«song»).innerText = data.now_playing.song.text;
document.getElementById(«cover»).src = data.now_playing.song.art || «»;
// Historial: solo 3 últimas
const historyList = document.getElementById(«history»);
historyList.innerHTML = «»;
data.song_history.slice(0, 3).forEach(item => {
const li = document.createElement(«li»);
li.innerText = item.song.text;
historyList.appendChild(li);
});
} catch (e) {
document.getElementById(«song»).innerText = «No disponible»;
}
}
loadNowPlaying();
setInterval(loadNowPlaying, 15000);