Home
Blog
Product Updates
Blog
What Aveiro’s Product Hunt Launch Day Actually Looked Like
Seedance 2.0 Comes to Aveiro — With Video Uploads and Bunny.net Under the Hood
Connect Aveiro to Any AI Agent in 10 Seconds — One MCP URL
How to Migrate from Squarespace to Aveiro
Integrating ByteDance Models Directly: What We Learned Building Aveiro
Auto-update Docs and Blog with Cursor Cloud Agents and the Aveiro API
What Is Connected Publishing?
Website CTA Analytics: Beyond Page Views
How to Connect a Custom Domain on Aveiro
Edit Your Website with AI Without Breaking Layout
Build a Portfolio Website on Aveiro
The Hidden Cost of a Fragmented Publishing Stack
How to Start a Newsletter From Your Website
Build a Documentation Site with Collections and MDX
Embed a Signup Form on Any Site
Your First Week on Aveiro
Updates
Org-Wide Newsletters Can Pick a Host Site
Dashboard Home, Onboarding Personalization, and Campaign Tweaks
Newsletter Web Archive — Publish Sent Campaigns as Site Pages
MCP Stdio Social Parity and a Taller Website-Mockup Wizard
Collection Blocks on Translated Pages Show the Right Language
MCP Tool Safety Hints — Hosted and Stdio Servers Now Match
Engagement Metrics on Published Posts — See What Sent Posts Did
Website Mockup Videos — Film a Live URL Into the Social Library
Translation Progress Fix — Stale Retranslate Totals and Readiness Refresh
Orbit Rename and Social Review Polish — Hover Cards and Add Menu Connect
Dashboard Polish — Published Post Summary, Ad Auto-Save, and Asset Previews
Translation Language Limits by Plan — Pricing Page Shows Language Allowances
Localized Sidebar and Header Navigation Titles
Translation Jobs Now Translate Page Metadata Text
Retranslate Jobs: Progress, Completion, and Republication Fixes
Instagram Story Publishing — Feed and Stories From One Draft
Agent Authoring Guide, Site Media API, and Advisory Lint
Social Engagement Metrics for Agents — Learn What Performs Before You Draft
Editor Polish — Media Breakout, Toolbar Fixes, and Ad Banner Cards
Locale-Prefixed Nav Links and Translation Publish Guards
Ad Placements on Layout Templates — Per-Template Overrides
Ads in the Layout Tab — Chrome Overrides, Live Preview, One Disclosure Label
Premium Ad Banners Beta — Organization Inventory on Every Site
Newsletter click tracking by element
Searchable Orbit Space Picker — Find Spaces in Large Hubs
Org Assets AI Composer — Image and Video With Reference Attachments
Plan Storage Limits — Metered Bytes at Rest for Media, Video, and Agent Uploads
Org-Wide Asset Management — Browse, Bulk Move, and Delete in One Place
Direct Media Uploads for Agents — Push Local Images and Videos Without a Public URL
Social Update — Publishing Credits Pool
Social Fix — First-Comment Outcome on the Post Row
Social Update — First Comments Publish With the Post
MCP Fix — Per-Platform First Comments on the Stdio Proxy
MCP Marketplace Template Clone — Bootstrap Sites from the Gallery
Homepage Rework — Template to Publish, Free Trial, and MCP for Agents
Usage Counters Now Reset on Your Billing Cycle
Social Dashboard: Post Sections, Scheduling Picker, and Platform Comments
Social Dashboard: Upload Aspect Ratios and New Post Dialog
MCP Fix — aveiro_update_page Retries on Revision Conflicts
LinkedIn Joins Social Publishing — Personal Profiles and Company Pages
Quasar Max Chat Upgrades to Claude Sonnet 5
Recoverable Failed Social Posts
Social Caption Guards and Safer Publish Dates
Media Library Folders and Unified Picker — One Org Library Across Sites
Newsletter Agent API and MCP Tools — Draft Campaigns from Cursor and Claude
Plain-Voice Quasar Chat Errors
Clearer AI Credit Messages and Fewer Continue Prompts
MDX Placeholder Tags Render as Text
AI and MCP Page Reordering — Move, Sort, and Reorder Site Structure
Translation Jobs: Live Progress, Cost Estimates, and Cleaner Pickers
Translations UI Polish and Connect Claude
Character References for Social AI Media + First Comment Field
AI Video Generation — Short Clips from the Site Editor
Social Org Media Browsing and Register-by-URL — Reuse Dashboard Uploads in Agent Drafts
MCP Fix — tools/call Accepts null and Stringified Arguments
MCP Fix — Parameterless Tools Work Without an Arguments Field
Multi-Aspect AI Media for Social Posts — Platform Crops in One Call
Social Agent API and MCP Tools — Draft Posts from Cursor and Claude
Social Publishing Beta — Draft, Approve, and Schedule Instagram and Threads
Once UI Effects on Published Sites
MDX Code Blocks and Smarter Validation
Subscribe Users from Your Product with the Audience API
Agency Template Blocks Are Now Reusable Page Builder Components
Sell Merch on Your Aveiro Site with Fourthwall
Visitor Login and Support Chat on Your Site
Safer AI Edits and Publish Guards
Newsletter Deliverability Dashboard
TrademarkTrademark
Ctrl k
Search...
Sign up

Subscribe Users from Your Product with the Audience API

When someone signs up to your SaaS or app, add them to your Aveiro audience list automatically — no iframe, no manual CSV, no Zapier required.
Updated 1mo ago
MDX Code Blocks and Smarter Validation
Agency Template Blocks Are Now Reusable Page Builder Components
Sponsored
Aveiro
aveiro.app
TrademarkTrademark© Aveiro. All rights reserved.
Built with Aveiro
In short
Create an API token with audience:write, then POST /api/v1/audience/subscribers from your server after product signup. Pass embedPublicId to reuse an embed form's site list and segment — or siteId directly. Copy-paste examples live in the embed form editor's API tab.

What we shipped

Embed forms already let you collect subscribers on WordPress, Webflow, or any external site. The missing piece was server-side subscribe — when a user creates an account in your product and you want them on your Aveiro newsletter list without showing a separate signup form.

New endpoint

POST /api/v1/audience/subscribers accepts:
  • email (required)
  • embedPublicId — resolves the site list and default segment from an existing embed form
  • siteId — alternative when you do not need form defaults
  • name, segment, marketingConsent, sourcePath, referrer — optional metadata
Authenticate with a Bearer token that has the audience:write scope (Organization → API tokens).

Embed form editor API tab

Each embed form now has an API tab with curl and fetch examples pre-filled with that form's embedPublicId. Copy, paste into your backend, swap in your token secret.

Shared subscribe logic

The public browser endpoint (POST /api/email/subscribe) and the new v1 route share the same subscribe pipeline — same validation, segment tagging, and welcome email triggers.

Why we built it this way

Product signups and marketing lists often live in different systems. Teams duct-tape Zapier, export CSVs, or maintain duplicate lists in Mailchimp. Aveiro already had embed forms for external sites. The headless API completes the loop for first-party product backends — your signup handler calls Aveiro once, and the contact lands in the same audience tools you use for campaigns, segments, and deliverability. Using embedPublicId keeps configuration in the dashboard (list, segment, consent defaults) while your code only passes the subscriber's email and metadata.

Setup checklist

Step
Where
Create an embed form (or note a site id)Audience → Embed forms
Create API token with audience:writeOrganization → API tokens
Copy curl/fetch example from API tabEmbed form editor → API
Call POST /api/v1/audience/subscribers after signupYour product backend
Confirm subscriber + segment in AudienceAudience → Overview
Enable welcome email if desiredAudience → Automation

Try it

  • Create an embed form and save it.
  • Open the API tab and copy the fetch example.
  • Create a token with audience:write and replace YOUR_API_TOKEN.
  • Run the request from your terminal or backend after a test signup.
  • Confirm the contact appears under Audience → Overview with the expected segment.

Read next

  • Embed forms
  • API tokens
  • Embed a signup form on any site
  • Automation — welcome emails