Click the button in the bottom-right corner to start a voice or text conversation with a live talk.dev agent. This is exactly what your customers will experience.
Three ways to deploy
One agent, multiple channels. Reach your customers however they prefer.
Add one line of code and a chat button appears on your site. Visitors can ask questions by voice or text without leaving your page.
One script tagConnect a phone number and your agent answers calls 24/7. Natural voice conversations — callers won't know it's AI.
Real phone callsGenerate a unique URL for your agent. Share it in emails, texts, QR codes, or social media. No app install needed.
Works on any deviceOne line of code
Copy this script tag into your site's HTML. That's it. Your agent appears as a floating button in the corner, ready to answer questions by voice or text.
<!-- Add before </body> -->
<script
src="https://api.talk.dev/widget.js"
data-agent="YOUR_AGENT_ID">
</script>For developers
Need text-to-speech in your own app? The talk.dev API gives you access to natural-sounding voices with a single HTTP call. Fast generation, multiple formats, simple auth.
# Generate speech from text
curl -X POST https://api.talk.dev/v1/tts \
-H "Authorization: Bearer $API_KEY" \
-d '{
"text": "Hello from talk.dev",
"voice": "aura-asteria"
}' \
-o output.mp3