A

AI Text-to-Speech API

Turn text into natural speech instantly

Convert text to natural-sounding speech. Multiple voices, languages, speed control, and audio format options.

AI Infrastructure3 endpoints

Endpoints

POST
/speak

Convert text to speech audio

GET
/voices

List available voices

Use Cases

Podcast generation
Accessibility tools
E-learning narration
IVR systems
Audiobook creation

Quick Start

quickstart.js
const response = await fetch(
  "https://ai-tts-by-helix-api.p.rapidapi.com/speak",
  {
    method: "POST",
    headers: {
      "X-RapidAPI-Key": "YOUR_API_KEY",
      "X-RapidAPI-Host": "ai-tts-by-helix-api.p.rapidapi.com"
    }
  }
);
const data = await response.json();
console.log(data);

Related APIs