Documentation
Everything you need to build beautiful forms with Zormly.
Getting Started
Learn the basics of Zormly
Form Builder
Master the form builder
Analytics
Understand your data
Workspaces
Collaborate with your team
API Reference
Build with our API
Security
Keep your data safe
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?