AI FORM GENERATION
Tell Forms what information you're collecting. It generates a complete, validated form with the right field types, conditional logic, and validation rules. No drag-and-drop builder. Just describe the job and get a production-ready form.
KEY FEATURES
Describe your form in plain English. "I need to collect company info, a W-9, and banking details for vendor onboarding." Forms handles the rest.
Field types, required fields, conditional visibility, and validation rules are all generated automatically. Edit anything you want after.
Drop the form into your product with a single script tag. Collect submissions via webhook or pull them from the API.
HOW IT WORKS
Tell Forms what you're collecting in plain language or structured JSON.
Forms generates the schema, fields, and validation. Adjust anything.
Embed in your product or share a link. Submissions flow to your webhook or API.
SDK EXAMPLE
from masonry import formsform = forms.generate(prompt="Collect company name, EIN, address, ""and upload a W-9 for vendor onboarding",style="minimal")print(form.fields) # 4 fields with validationprint(form.embed_url) # Drop into your product