Shopify Text-to-Speech - AI Voice for Your Store
Add AI voice descriptions to your Shopify store. Let customers listen to product descriptions, reviews, and announcements.
What You Can Build
- Audio product descriptions for accessibility
- Voice-powered customer support chatbot
- Automated audio announcements for sales
- Multi-language product descriptions
- Voice reviews and testimonials
Quick Start
1. Get your API key from your account page
2. Use the OpenAI-compatible endpoint for easy integration:
// Shopify Liquid + JavaScript
fetch("https://tts.ai/v1/audio/speech", {
method: "POST",
headers: {
"Authorization": "Bearer sk-tts-YOUR_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "kokoro",
voice: "af_bella",
input: productDescription
})
})
.then(r => r.blob())
.then(blob => {
const audio = new Audio(URL.createObjectURL(blob));
audio.play();
});
API Features
- OpenAI-compatible endpoint (drop-in replacement)
- 20+ TTS models including free tier
- Voice cloning with 9 models
- Speech-to-text (99 languages)
- Batch processing (up to 50 items)
- Webhook notifications
- Streaming audio for low latency
Pricing
Same character-based pricing as the web app. Free-tier models carry no premium surcharge.
Calculate Your CostsWhat could we improve? Your feedback helps us fix issues.
Ready to get started?
Sign up free and get 15,000 characters. No credit card required.