An email form. A subscriber count. An export when you need it.
You write a blog, or run a community, or sell things. You want people to give you their email. You do not want to pay Mailchimp $50/month just for a signup form. This is the collection part. You still send emails with whatever tool you prefer.
How an agent handles this: Your agent creates a newsletter signup form via API (email + name fields). Embeds form on your website. Visitors submit email addresses. Webhook notifies agent on each signup. Agent processes new subscribers (adds to email list, sends welcome email, updates analytics). Dashboard tracks growth.
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"templateId": "newsletter",
"createDashboard": true
}'The template has name and email fields. Embed the form, share the URL, or build your own signup box and POST to the submit endpoint.
A newsletter signup is one form. Builder is $9/month — 50 projects, 5,000 subscribers per form. That covers most personal blogs and small projects. When you outgrow 5,000 subscribers, Pro is $29/month for unlimited submissions and CSV export. This is the collection layer. You still need a separate tool to send emails — but that separation is a good thing. Pick the cheapest sender and collect with 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.
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. Add the form to your site. See signups come in.