Skip to content

Audio Generation

This API guide offers a comprehensive overview of the audio generation process on our platform.


Users can easily input text, and our platform will generate high-quality audio based on the provided content. Once the audio is ready, you'll receive a direct link to integrate seamlessly into your videos, streamlining your workflow and enhancing your videos with custom sound. 🎧🎬

Quick Start

Let’s explore how to input text and generate custom audio, so you can easily access and use it in your videos. 🎧✨

Audio Generation

To generate custom audio, you can send the following parameters:

  • text: The text you want to convert into audio.
  • audio_id: The identifier for the specific voice you want to use.
  • audio_service: The service or provider for generating the voice.

You can find the available audio_id and audio_service from audio listing API. After submitting your request, In return, you will receive an audio_url, which you can use to access and integrate the generated audio into your videos. 🎙️🔗

curl --request POST  \
     --url 'https://api.immersive-fox.com/v1/bulk_requests/generate_audio/'  \
     --header 'X-Api-Key: <your-api-key>'  \
     --header 'Content-Type: application/json'  \
     --data { \
                "text": "Hello I am {{First Name}}, this is My first audio generation request." \
                "audio_id": "JBFqnCBsd6RMkjVDRZzb" \
                "audio_service": "google_audio" \
            }
{
    "audio_url": "https://my-audio-bucket.s3.eu-central-1.amazonaws.com/my_audio.mp3"
}