Agent deploys to your domain. Automatic SSL. No config.
Updated March 2026
Every plan gets a custom subdomain — alice.sutrena.com. Pro and above can add your own domain — mysite.com. Point a CNAME record, SSL is automatic, pages are served from your domain. No DNS wizardry required. Agent creates, humans visit your domain.
# 1. Set your subdomain (all plans)
curl -X PUT https://sutrena.com/api/account/subdomain \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"subdomain": "alice"}'
# Pages now served at alice.sutrena.com/slug
# 2. Add a custom domain (Pro+)
curl -X POST https://sutrena.com/api/account/domains \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"domain": "mysite.com"}'
# Returns CNAME instructions. Add the DNS record. SSL is automatic.Set a subdomain for free. Add custom domains on Pro+. Point a CNAME, SSL happens automatically.
Custom domains require DNS changes on your registrar. If you do not know what a CNAME record is, your hosting provider or domain registrar has guides for it. We cannot manage your DNS for you. Also, free plan does not get custom domains — subdomains only.
Usually a few minutes after the CNAME record propagates. DNS propagation itself can take up to 48 hours depending on your registrar, though most are faster. Sutrena checks periodically and activates SSL automatically.
Yes. docs.yourcompany.com, blog.yourcompany.com — any subdomain works. Each is added as a separate custom domain linked to its own Sutrena subdomain. Add a CNAME record for each pointing to cname.sutrena.com. Each counts toward your plan's domain limit. See the [full guide](/answers/can-i-use-subdomains-of-custom-domain).
Subdomains are alice.sutrena.com — free on all plans. Custom domains are mysite.com — your own domain, requires Pro plan ($29/mo) or higher. Both serve the same pages.
Pro ($29/mo): 5. Scale ($99/mo): unlimited. Subdomains (alice.sutrena.com) are available on all plans: Free gets 1, Pro and Scale unlimited.
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>"}'Get a trial API key instantly with no signup, or create an account for the full experience.