How to capture email addresses on a Vapi voice agent
powsoo_show_card with the value, the caller taps Confirm or edits one character, and Powsoo fires a webhook with the final address. The caller reads instead of listens, so a wrong character is obvious at a glance.What Vapi gives you
Vapi ships an email formatter that is enabled by default. It rewrites @ as “at” and . as “dot” so the agent speaks an address the caller can follow. This runs inside Vapi’s voice formatting pipeline before text-to-speech.
The formatter changes output, not input. It has no view of what the caller actually said, so a mis-transcribed address is still mis-transcribed. And spoken email is one of the hardest cases: standard voice AI transcribes an address correctly only about 53% of the time, with more sophisticated approaches reaching around 74%. The standard advice is to prompt the agent to read the value back and ask the caller to confirm. That helps, and it still leaves the caller verifying a character string by ear.
Add on-screen confirmation with Powsoo
If the caller is on a web session, you can confirm by sight. Powsoo layers a visual card onto your existing Vapi agent. Vapi support is coming soon; when it lands the flow will be:
- Connect your Vapi account in the Powsoo dashboard.
- Add one
<powsoo-voice>web component and one versioned script tag to the page. - Add a
powsoo_show_cardtool to the agent. When the agent has an email to confirm, it calls that tool with the transcribed value. - A card renders in the browser. The caller taps Confirm or edits one character.
- On confirm, Powsoo fires a webhook with the field name, the value, and the call session ID.
Want it today? Powsoo already works with Retell using the same tap-to-confirm pattern. Vapi support will not replace the agent: it keeps running the conversation, and the card handles the one field where a single wrong character costs you the lead.
Related
- The full guide to collecting accurate data on voice calls
- Confirming phone numbers without spelling them out
- Tap-to-confirm cards vs SMS fallback
Frequently asked questions
Does Vapi capture emails accurately out of the box?
Vapi's email formatter is on by default and makes the agent read addresses back intelligibly. It does not verify what was captured. The caller still has to notice a wrong letter spoken aloud and correct it, which is where long or unusual addresses fail.
How do I confirm the email visually on a Vapi call?
Connect Vapi to Powsoo, drop in the <powsoo-voice> web component and script tag, and have the agent call powsoo_show_card with the transcribed email. A card renders in the browser; the caller taps Confirm or Edit; Powsoo fires a webhook with the final value.
What about phone-only Vapi calls with no screen?
A pure PSTN call has no browser to render into. For those, use an SMS fallback: the agent texts a one-tap link so the caller confirms the address on their phone.