Uploads audio files to the Vimmerse platform for use in API requests and video production.
audio_url parameter in other endpointsNew Audio URL
Bad Request
Insufficient Credit
Validation Error
{- "data": {
- "id": "ASSET_ID",
- "customer_id": "CUSTOMER_ID",
- "primary_user_id": "CUSTOMER_ID",
- "args": { },
- "results": [
- "result_url1",
- "result_url2"
], - "thumbnails": [ ],
- "status": "success",
- "mime_type": "MIMETYPE",
- "app_name": "FUNCTION_NAME",
- "created_at": "2025-05-06 16:35:59.840508+00:00",
- "updated_at": "2025-05-06 16:35:59.840508+00:00",
- "history": [ ]
}
}Converts text to natural-sounding speech using AI voice synthesis.
The API generates realistic human-like speech from text input using advanced neural voice technology. This is perfect for creating voiceovers, narrations, and spoken content without needing to record audio.
| Voice Name | Gender | Character |
|---|---|---|
| Rachel | Female | Professional, warm |
| Aria | Female | Friendly, energetic |
| Sarah | Female | Calm, authoritative |
| Laura | Female | Cheerful, upbeat |
| Charlotte | Female | Elegant, refined |
| Alice | Female | Young, playful |
| Matilda | Female | Sophisticated, mature |
| Jessica | Female | Clear, professional |
| Lily | Female | Sweet, gentle |
| Roger | Male | Strong, confident |
| George | Male | Deep, authoritative |
| Callum | Male | Friendly, approachable |
| River | Male | Smooth, engaging |
| Liam | Male | Natural, conversational |
| Will | Male | Professional, clear |
| Eric | Male | Bold, dynamic |
| Chris | Male | Warm, trustworthy |
| Brian | Male | Mature, distinguished |
| Daniel | Male | Confident, articulate |
| Bill | Male | Energetic, engaging |
| Charlie | Male | Youthful, energetic |
prompt: Text to convert to speech (required)voice: Voice selection (required)import requests
url = "https://api.vimmerse.net/audio/text-2-speech"
headers = {
'X-Api-Key': 'YOUR_API_KEY'
}
payload = {
"prompt": "Welcome to our AI-powered creative platform. We're excited to show you what's possible.",
"voice": "Aria" # Choose from available voices
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Returns an audio file URL that can be used in video production or downloaded directly.
Audio URL
Bad Request
Insufficient Credit
Validation Error
{- "data": {
- "id": "ASSET_ID",
- "customer_id": "CUSTOMER_ID",
- "primary_user_id": "CUSTOMER_ID",
- "args": { },
- "results": [
- "result_url1",
- "result_url2"
], - "thumbnails": [ ],
- "status": "success",
- "mime_type": "MIMETYPE",
- "app_name": "FUNCTION_NAME",
- "created_at": "2025-05-06 16:35:59.840508+00:00",
- "updated_at": "2025-05-06 16:35:59.840508+00:00",
- "history": [ ]
}
}Generates sound effects from text descriptions using AI audio synthesis.
Creates realistic sound effects based on natural language descriptions. No need for sound libraries or manual creation.
prompt: Description of the desired sound effect (required)duration: Length of audio in seconds (optional)import requests
url = "https://api.vimmerse.net/audio/text-2-sound-effect"
headers = {
'X-Api-Key': 'YOUR_API_KEY'
}
payload = {
"prompt": "ambient cafe sounds with coffee brewing and distant chatter",
"duration": 10 # 10-second sound effect
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Audio URL
Bad Request
Insufficient Credit
Validation Error
{- "data": {
- "id": "ASSET_ID",
- "customer_id": "CUSTOMER_ID",
- "primary_user_id": "CUSTOMER_ID",
- "args": { },
- "results": [
- "result_url1",
- "result_url2"
], - "thumbnails": [ ],
- "status": "success",
- "mime_type": "MIMETYPE",
- "app_name": "FUNCTION_NAME",
- "created_at": "2025-05-06 16:35:59.840508+00:00",
- "updated_at": "2025-05-06 16:35:59.840508+00:00",
- "history": [ ]
}
}Generates 30-second music tracks from text descriptions using Google's Lyria music AI.
Creates original, royalty-free music compositions based on natural language descriptions. Each track is 30 seconds long and unique.
prompt: Description of the desired music (required)import requests
url = "https://api.vimmerse.net/audio/text-2-music"
headers = {
'X-Api-Key': 'YOUR_API_KEY'
}
payload = {
"prompt": "A lush, ambient soundscape featuring flowing water sounds, distant bird chirps, and a gentle melancholic piano melody that slowly unfolds. Create a peaceful, meditative atmosphere suitable for relaxation or background music."
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Returns a WAV audio file (30 seconds) that can be used commercially without royalty concerns.
Audio URL
Bad Request
Insufficient Credit
Validation Error
{- "data": {
- "id": "ASSET_ID",
- "customer_id": "CUSTOMER_ID",
- "primary_user_id": "CUSTOMER_ID",
- "args": { },
- "results": [
- "result_url1",
- "result_url2"
], - "thumbnails": [ ],
- "status": "success",
- "mime_type": "MIMETYPE",
- "app_name": "FUNCTION_NAME",
- "created_at": "2025-05-06 16:35:59.840508+00:00",
- "updated_at": "2025-05-06 16:35:59.840508+00:00",
- "history": [ ]
}
}