TTS Universal

Text To Speech API, more than 700+ AI voices

Details

This API allows users to convert text into speech using various voices and services.

  • Base URL: https://www.capix.uz/v2/tts/

Request

  • Method: POST

  • Content Type: application/json

  • Headers:

    • Content-Type: application/json

    • token: API_KEY

Request Body

{
  "text": "Hello, what is your name ?",
  "voice_indentifier": "en-US_Matthew",
  "tts_service": "polly"
}
  • text (string, required): The text to be converted into speech.

  • voice_indentifier (string, required): The identifier for the voice to be used. Format: <language code>_<voice name>. Example: en-US_Matthew.

  • tts_service (string, required): The TTS service to be used. Currently supported service is "polly".

Code Examples

curl -X POST \
  -H "Content-Type: application/json" \
  -H "token: API_KEY" \
  -d '{
        "text": "Hello, what is your name ?",
        "voice_indentifier": "en-US_Matthew",
        "tts_service": "polly"
      }' \
  "https://www.capix.uz/v2/tts/"

Languages

Last updated