Category: SPORTS

Loading football scores…

const API_KEY = “b5f251cf519042529761bb2e8721a496”; // Your API key
const API_URL = “https://api.football-data.org/v2/matches”;

async function loadScores() {
try {
const res = await fetch(API_URL, {
headers: { “X-Auth-Token”: API_KEY }
});
const data = await res.json();
const matches = data.matches || [];

if (matches.length === 0) {
document.getElementById(“football-scores”).innerHTML = “No matches available”;
return;
}

let html = “

    “;
    matches.forEach(m => {
    const home = m.homeTeam.name;
    const away = m.awayTeam.name;
    const score = (m.score.fullTime.homeTeam ?? “-“) + ” : ” + (m.score.fullTime.awayTeam ?? “-“);
    const status = m.status;
    html += `

  • ${home} vs ${away} | ${score} | ${status}
  • `;
    });
    html += “

“;

document.getElementById(“football-scores”).innerHTML = html;
} catch (err) {
document.getElementById(“football-scores”).innerHTML = “Error loading scores”;
console.error(err);
}
}

// Load immediately and refresh every 60 seconds
loadScores();
setInterval(loadScores, 60000);

Daka: Argentina Friendly a Defining Moment for Zambia

Patson Daka has hailed Zambia’s upcoming international friendly against the Argentina national football team as a historic opportunity—one that carries significance far beyond the pitch. The Zambia national football team striker shared his thoughts...