Your agents deploy pages, create forms, get data back. Framework-agnostic web runtime. No plumbing to maintain.
Updated March 2026
Your AI features need to create forms and deploy pages on the fly. An agent can scaffold it in minutes, but you cannot maintain webhook retries, dedup, and dashboards across every generated form.
Sutrena is the web runtime for agents. One API call creates a form or deploys a page. Sutrena handles storage, delivery, retries, and exports. Your agent creates it once, the infrastructure works forever.
Product managers want dashboards for feedback and NPS. Building internal tools pulls engineers off the product.
Define widgets in JSON, get charts and tables. No React components to build. Dashboards update live and attach to any form.
Your AI features need to create forms and deploy pages on the fly. But most tools are click-around UIs with no real API.
Sutrena is API-first with MCP support. Your agents create forms, deploy pages, read submissions, and build dashboards through the same endpoints your developers use.
Webhooks break silently. No signatures, no retries, no logs. You find out when a customer complains.
HMAC-SHA256 signatures on every delivery. Automatic retries on failure. Delivery logs so you can actually see what happened.
Your AI can scaffold a form backend in 30 minutes. But by form number five you are maintaining validation, dedup, webhooks, and dashboards across every feature. That is a full-time job nobody asked for.
Hand off the form infrastructure. Your team builds product. Sutrena handles storage, delivery, exports, and the boring stuff that breaks at 2 AM. Starting at $9/month for Builder, $29/month for Pro -- less than one hour of engineering time.
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Product Feedback",
"fields": [
{"name": "email", "label": "Email", "type": "email", "required": true},
{"name": "category", "label": "Category", "type": "select", "required": true,
"options": ["Bug", "Feature Request", "Improvement", "Other"]},
{"name": "rating", "label": "Rating", "type": "select", "required": true,
"options": ["1", "2", "3", "4", "5"]},
{"name": "feedback", "label": "Feedback", "type": "textarea", "required": true}
],
"createDashboard": true
}'Use any template with templateId in POST /api/forms.
Yes. Add embed.js to your page, pass the form ID. It renders in an iframe with postMessage for height resizing and submission events. That is it.
Dashboards are JSON -- seven widget types (metric cards, tables, pie/bar/line charts, text). You can also use webhooks to pipe every submission into your own analytics stack if you prefer that instead.
Free gives you 10 projects (forms, pages, and dashboards combined), 500 submissions per form. After that: Builder is $9/mo for 50 projects, 5,000 submissions each. Pro is $29/mo for 200 projects, unlimited submissions. Scale is $79/mo for no limits at all.
Yes. MCP server at /.well-known/mcp.json with 48 MCP tools. Claude Code, Cursor, and other MCP clients connect directly. Same API your developers use.
Every delivery gets an HMAC-SHA256 signature header. Your backend verifies the payload came from Sutrena. Failed deliveries retry automatically.
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 API key instantly with no signup, or create an account for the full experience.