A retro form. A survey. Different fields each time. A dashboard for the standup.
You have a team of 10-50 people. Every sprint needs a retro. Every quarter needs an engagement survey. New hires need an onboarding checklist. Each one has different questions. Your agent creates the form from a description and you get a dashboard to show at the standup.
How an agent handles this: Your agent creates a retro form via API with custom fields for each sprint (what went well, blockers, energy level). Shares the form URL with your team. Team members submit responses. Agent processes submissions (updates project management tools, summarizes themes). Dashboard shows live results during standup.
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Sprint 14 Retrospective",
"fields": [
{"name": "name", "label": "Name", "type": "text", "required": true},
{"name": "team", "label": "Team", "type": "select",
"options": ["Engineering", "Design", "Product", "Growth"]},
{"name": "went_well", "label": "What went well?", "type": "textarea", "required": true},
{"name": "improve", "label": "What should we improve?", "type": "textarea", "required": true},
{"name": "energy", "label": "Energy level", "type": "select",
"options": ["1 — Burned out", "2 — Tired", "3 — Neutral", "4 — Good", "5 — Energized"]}
],
"closesAt": "2026-03-01T17:00:00Z",
"createDashboard": true
}'Starts at $9/month (Builder) with 50 projects and 5,000 submissions each — enough for a single team doing weekly retros. Pro ($29/month) gets you 200 projects with unlimited submissions. That covers weekly retros across a few teams. If you need more than 200 projects, Scale is $79/month.
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 key. Tell your agent the sprint number and team list. Share the form link before the standup.