Documentation

Everything you need to build beautiful forms with Zormly.

Powerful API

Build custom integrations with our REST API.

api-example.js
// Create a new form
const response = await fetch('https://api.zormly.com/v1/forms', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    title: 'Customer Feedback',
    questions: [
      { type: 'text', title: 'What is your name?' },
      { type: 'rating', title: 'How would you rate us?' }
    ]
  })
});

const form = await response.json();
console.log(form.publicUrl);

Can't find what you're looking for?