ZARLO Forms

Selbst gehostetes Form-Backend. Mandantengetrennt. Eine Form-ID, ein fetch, fertig.

Integration

await fetch("https://forms.zarlo.de/api/f/" + FORM_ID, {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ name, email, message }),
})