A rating. A category. A comment. Webhooks that notify you instantly.
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. Webhooks and CSV export show 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. An automation with condition steps handles follow-ups natively — detractors get an apology email, promoters get a thank-you, all without agent involvement. Submissions are queryable via API.
Create the feedback form
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}
],
"successMessage": "Thank you for your feedback!"
}'Add a webhook for Slack notifications. Set up an automation to route feedback by sentiment. Query submissions via API or export to CSV for analysis.
Starts at $29/month (Pro) with 100 projects, unlimited submissions, unlimited 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. Automations can send confirmation emails, route feedback by sentiment, and alert your team when volume spikes. If you need collection, visibility, and lightweight follow-up — this works.
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>"}'Grab a trial key. Your agent creates the form and webhook. Takes about a minute. Then you know.