Do you know what your customers think?

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.

Where does feedback go right now?

Probably everywhere

  • Email, DMs, support tickets. No single place to look.
  • Getting better or worse? You kinda feel it but do not actually know.
  • Most complaints about shipping or product? No idea without manual sorting.
  • You check feedback once a month. The urgent stuff slips by.
  • Sharing trends with the team means building a spreadsheet from scratch.

With Sutrena

  • Every response has a rating, a category, and free text. Structured.
  • Dashboard shows satisfaction over time, category breakdown, volume.
  • Slack webhook pings your team when feedback arrives.
  • Share the dashboard URL at your weekly standup. Always current.
  • CSV export when you need to dig deeper.

How your agent wires it up

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.

What this costs (and what it does not do)

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.

What is Sutrena?

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.

Get started in two API calls

1. Get a trial key (no auth, no signup)

curl -X POST https://sutrena.com/api/trial

2. 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}'

Want to hear what people actually think?

Grab a trial key. Your agent creates the form, dashboard, and webhook. Takes about a minute. Then you know.

Customer Feedback & NPS Collection — Form API | Sutrena | Sutrena