fetch("api.php", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ prompt: "Olá IA" }) }) .then(r => r.json()) .then(d => console.log(d));