A rating. A category. A comment. A dashboard that shows the patterns.
Someone has feedback. You want to hear it. But you also want to know: are things getting better or worse? Which category keeps coming up? Shipping? Product? Support? A form with a rating field, a category dropdown, and a text area is enough. A dashboard shows you the rest.
How an agent handles this: Your agent creates the feedback form via API (rating, category, comment fields). Shares the form URL with customers. Humans submit feedback. Webhook notifies your agent on each submission. Agent processes the data (stores in your DB, triggers follow-ups, updates metrics). The dashboard shows patterns in real-time.
Create the feedback form and dashboard
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Customer Feedback",
"fields": [
{"name": "email", "label": "Your Email", "type": "email"},
{"name": "satisfaction", "label": "How would you rate us?", "type": "select",
"options": ["1 — Poor", "2 — Fair", "3 — OK", "4 — Good", "5 — Excellent"],
"required": true},
{"name": "category", "label": "What is this about?", "type": "select",
"options": ["Product", "Shipping", "Support", "Pricing", "Other"]},
{"name": "feedback", "label": "Tell us more", "type": "textarea", "required": true}
],
"createDashboard": true
}'The dashboard gets a pie chart for satisfaction, a bar chart for categories, a line chart for volume, and a table of recent feedback. All generated from the form fields. You do not configure the charts separately.
Starts at $9/month (Builder) with 50 projects and 5,000 submissions per form. If you get more feedback than that, Pro is $29/month with unlimited submissions, 10 webhooks, and CSV export. Typeform Business is $99/month for 10K responses. Dedicated NPS tools run $50-200/month. This is cheaper. It also does less. No email sequences. No follow-up automation. Just collection and visibility. If that is enough, this works.
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}'Grab a trial key. Your agent creates the form, dashboard, and webhook. Takes about a minute. Then you know.