Your agent deploys the waitlist page, creates the NPS form, sets up analytics. Same conversation. Why build this twice?
Updated March 2026
This quarter it is a waitlist. Next quarter it is NPS and bug reports. Every new form type means more backend plumbing alongside the actual product. Your agent can scaffold it, but someone has to maintain it.
The agent creates everything through Sutrena's API. Waitlist, feedback, NPS, bug reports -- one API call each. Deploy landing pages alongside them. When priorities shift, your infrastructure does not need to change. That is the whole point.
Investors ask for data. How many signups? What is the NPS? You do not have time to build internal tools for reporting.
Built-in analytics with query primitives. Track signups, visitor counts, referrer breakdowns, and conversion funnels through the API. Share analytics publicly or query them programmatically for investor updates.
Requirements change constantly. Rebuilding forms or migrating data every time you pivot wastes runway.
Forms and pages are mutable through the API. Change fields, update labels, swap the success message, update page HTML. Existing submissions stay. No migration.
Enterprise form tools charge hundreds a month for stuff you do not need yet. Free tiers have submission caps that choke you right when things start working.
Free forever for small experiments -- 10 projects (forms, pages, analytics, and automations combined). Pro is $29/month with 100 projects and unlimited submissions. No per-submission fees ever.
This quarter it is a waitlist. Next quarter it is NPS and bug reports. Every new form type means more backend plumbing alongside the actual product.
Every form type uses the same API. Waitlist, feedback, NPS, bug reports -- one API call each. Deploy landing pages alongside them. When priorities shift, your infrastructure does not need to change. That is the whole point.
# Sign up for the free plan or get a trial key
curl -X POST https://sutrena.com/api/trial
# Deploy a landing page
curl -X POST https://sutrena.com/api/pages \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"name": "Launch Page", "html": "<h1>Coming Soon</h1>"}'
# Create a waitlist form
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"workflowId": "waitlist"}'
# Later: add NPS survey for early users
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"workflowId": "nps"}'Use any preset with workflowId in POST /api/forms.
Free plan is forever, no credit card -- 10 projects (forms, pages, analytics, and automations combined), 100 submissions per form. Pro is $29/month -- 100 projects, unlimited submissions, unlimited webhooks, CSV export. No per-submission charges.
Query analytics through the API for visitor counts, signups, referrer breakdowns, and conversion funnels. Use the data in your own reports, or set up an automation to generate periodic summaries.
One API call for a trial key, one to create the form from the waitlist template. You get a hosted URL. Under a minute.
Pro is $29/mo for 100 projects and unlimited submissions. Scale is $99/mo for unlimited everything. Upgrade through Paddle checkout -- no data migration, no downtime.
Yes. 67 MCP tools. Point Claude Code or Cursor at https://sutrena.com/api/mcp and it can create forms, deploy pages, read submissions, and track analytics on its own.
Sutrena is the web runtime for AI agents. Forms, Pages, Analytics, Webhooks, Automations — all through 67 MCP tools and one REST API. Your agent creates web artifacts, humans interact with them, and your agent gets the data back. Use any one feature or all of them together.
Pages
Deploy HTML instantly
Forms
Collect structured data
Automations
DSL-based pipelines with 14 step types
Analytics
Privacy-first, no cookies
Webhooks
Slack, Discord, Telegram
1. Get a trial key (no auth, no signup)
curl -X POST https://sutrena.com/api/trial2. Create anything — a page, form, automation, or analytics site
# Create a form
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"name": "waitlist", "fields": [{"name": "email", "label": "Email", "type": "email", "required": true}]}'
# Or deploy a page
curl -X POST https://sutrena.com/api/pages \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"slug": "index", "title": "My Site", "html": "<h1>Live</h1>"}'Get a trial API key instantly with no signup, or create an account for the full experience.