Instant Forms
Create a working form in seconds — no signup required. Flowqen's Instant Form builder lets anyone drag-and-drop fields, preview the form live, and start collecting submissions immediately.
Anonymous forms expire after 48 hours and are limited to 5 submissions. Sign up to keep your form permanently.
How It Works
1
Visit /create
Go to
/create — no login needed. A new anonymous form is created instantly via the /api/forms/instant endpoint.2
Build your form
Add fields by dragging from the field palette. Supported types include text, email, textarea, select, checkbox, radio, number, phone, URL, date, time, file, hidden, and color.
3
Preview & share
The right panel shows a live preview of your form. Copy the shareable link or embed code to start collecting responses.
4
Claim your form
Sign up or log in, then your anonymous form is automatically transferred to your account via
/api/forms/claim.API Reference
Create Instant Form
POST
/api/forms/instantCreates an anonymous form with 3 default fields (name, email, message).
Response
{"id": "clx...","editToken": "a1b2c3d4-...","fields": [{ "name": "name", "type": "text", "label": "Your Name", "required": true },{ "name": "email", "type": "email", "label": "Email", "required": true },{ "name": "message", "type": "textarea", "label": "Message", "required": false }]}
Rate limit: 5 forms per IP per day.
Claim a Form
POST
/api/forms/claimTransfers ownership of an anonymous form to your account. Requires authentication and the form's editToken.
Request Body
{"formId": "clx...","editToken": "a1b2c3d4-..."}
Edit with Token
Anonymous forms can be edited via PATCH with the editToken query parameter instead of session authentication:
Example
PATCH /api/forms/{formId}?editToken=a1b2c3d4-...
Limitations
| Feature | Anonymous | Signed Up (Free) |
|---|---|---|
| Form expiry | 48 hours | Never |
| Max submissions | 5 | 100/month |
| Email notifications | ❌ | ✅ |
| Integrations | ❌ | ✅ |
| Branding removal | ❌ | Paid plans |