fetch("http://77.42.71.227:8000/markets")
.then(res => res.json())
.then(data => {
const html = data.map(m => `
${m.question}
Probabilidade: ${(m.probability_yes * 100).toFixed(1)}%
`).join("");
document.getElementById("vitrinum-market").innerHTML = html;
});