GreenFlow Intelligence
Restflödes- & Bidragsanalys
Typ av investering / Material
Investeringsbudget (SEK)
🔄 Kontaktar Nexus Database…
‘;
fetch(apiUrl, {
method: ‘POST’,
headers: { ‘Content-Type’: ‘application/json’ },
body: JSON.stringify({ keyword: keyword, amount: amount })
})
.then(response => response.json())
.then(data => {
if(data.count > 0) {
let html = `✅ ${data.count} BIDRAG HITTADES
`;
data.matches.forEach(match => {
html += `
${match.name}
${match.desc}
💰 Stöd: upp till ${match.support_sek.toLocaleString()} SEK
Deadline: ${match.deadline}
Inga direkta matchningar. Försök med bredare sökord (t.ex. ”plast” eller ”digital”).
‘;
}
})
.catch(err => {
resultDiv.innerHTML = ‘❌ Fel: Kunde inte nå servern. (Är Python igång?)
‘;
console.error(err);
});
}