Your agent deploys the landing page and waitlist form in one conversation. Live in 30 seconds. No infrastructure to maintain.
Updated March 2026
You have three ideas a month. Each needs a landing page and a waitlist. Setting up hosting and databases for every experiment kills your momentum.
Your agent creates the page and form through Sutrena's API. One conversation, live URLs for both. No hosting, no database, no build pipeline. When an idea dies, delete it. When one takes off, the infrastructure already works.
Budget is tight. Most form tools charge per submission or hide everything useful behind enterprise pricing.
Free plan, forever -- 10 projects (forms, pages, and dashboards combined), 500 submissions per form. Builder is $9/month with 5,000 submissions per form. Pro is $29/month with unlimited submissions. No per-submission fees.
You need to change fields, add forms, or pivot entirely -- without redeploying anything.
Create, update, delete forms and pages through the API. Change fields, swap templates, spin up something new. No redeploys.
You want to know how many people signed up and where they came from. But building analytics is a whole side quest.
Pass createDashboard: true and get signup counts, trend lines, and referral breakdowns. Share it publicly or keep it private.
Three ideas a month. Each needs a waitlist or signup flow. Rebuilding form backends for every side project kills your momentum.
One account covers all your projects. Free handles small experiments, Builder at $9/month covers a single production project, or Pro at $29/month covers up to 200 projects. Your AI agent creates the form in 2 API calls. When an idea dies, delete the form. When one takes off, the infrastructure already works.
# Get started with the free plan (no credit card)
# Or get a trial key instantly (no signup)
curl -X POST https://sutrena.com/api/trial
# {"key": "st_trial_xxx", "expiresAt": "..."}
# Create a waitlist with live dashboard -- done
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"templateId": "waitlist", "createDashboard": true}'Use any template with templateId in POST /api/forms.
Two API calls. One for a trial key (or sign up for the free plan), one to create the form. You get a hosted URL and a dashboard URL. Under 30 seconds if you type fast.
10 projects (forms, pages, and dashboards combined), 500 submissions per form, 1 webhook, MCP access. Forever free, no credit card. Enough to validate whether your idea has legs.
Yes. Embed the form with embed.js, or POST submissions directly from your own HTML. Works with any static site, Vercel, Netlify, whatever you are using. Or skip external hosting entirely and deploy your landing page via the Sutrena Pages API.
CSV export is on Builder ($9/mo) and above. On the free plan, you can read all submissions through the API and do whatever you want with the data.
Change them through the API. Fields, labels, validation, success message -- all mutable. Existing submissions stay intact. No migration needed.
Sutrena is the web runtime for AI agents. Three primitives — pages, forms, and dashboards — accessible through one API. Your agent creates web artifacts, humans interact with them, and your agent gets the data back. Framework-agnostic. Works from any MCP client or HTTP client.
1. Get a trial key (no auth, no signup)
curl -X POST https://sutrena.com/api/trial2. Create a form + dashboard from a template
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"templateId": "waitlist", "createDashboard": true}'Get a trial API key instantly with no signup, or create an account for the full experience.