Welcome to the NeuraNext AI API, your gateway to integrating advanced language processing services into your applications. Our API offers three core functionalities—language translation, voice-to-text conversion, and text-to-voice conversion—powered by cutting-edge artificial intelligence. Whether you're building communication tools, enhancing accessibility, or automating workflows, NeuraNext AI provides seamless, accurate, and fast solutions for your language needs. With NeuraNext AI, you can break down language barriers, easily convert speech to text for transcription, and generate lifelike voiceovers from text. Our API is designed for developers seeking to incorporate sophisticated language technology into their applications with minimal effort and maximum performance.
API Base Url : https://api.neuranextai.com/Allow you to get the available languages for translating texts
Success Response: 200
{
"result": {
"languages": [
{
"tl_id": 1,
"l_name": "English",
"api_l_code": "en"
},
{
"tl_id": 2,
"l_name": "Albanian",
"api_l_code": "sq"
}
]
},
"status": "success",
"message": "languages list"
}
Allow you to translate texts from a source language to destination language
Parameter | Type | Description |
---|---|---|
t_text | String | Text to translate |
t_source | String | Text source language or text current language |
t_target | String | Text target Language or text translated to |
{
"t_text":"hello user",
"t_source":"en",
"t_target":"es"
}
{
"result": {
"translated_text": "hola usuario"
},
"status": "success",
"message": "translated text"
}
Allow you to auto detect source language and translate texts to destination language
Parameter | Type | Description |
---|---|---|
t_text | String | Text to translate |
t_target | String | Text target Language or text translated to |
{
"t_text":"hello user",
"t_target":"es"
}
Success Response: 200 ok
{
"result": {
"translated_text": "hola usuario"
},
"status": "success",
"message": "translated text"
}
Allow you to list languages available for voice to text translation
Success Response: 200 ok
{
"result": {
"languages": [
{
"id": 1,
"ln_description": "English US",
"api_l_code": "en-us"
},
{
"id": 2,
"ln_description": "English India",
"api_l_code": "en-in"
}
]
},
"status": "success",
"message": "languages list"
}
Allow you to translate audio to text
Parameter | Type | Description |
---|---|---|
t_sample_rate | Integer | Default value 16000 |
t_language | String | Language for the target text |
t_accuracy | String | Accuracy needed for the output, High, Medium, Low |
audio_file | String | .wav file |
form-data
t_sample_rate:16000
t_language:en-us
t_accuracy:low
audio_file:file
Success Response: 200 ok
{
"result": {
"text": "this is a dummy taxed"
},
"status": "success",
"message": "audio translated"
}
Allow you to get languages for text to speech conversion
Success Response: 200 ok
{
"result": {
"languages": [
{
"id": 1,
"language_name": "Punjabi",
"api_l_code": "pa"
},
{
"id": 2,
"language_name": "Kurdish",
"api_l_code": "ku"
},
{
"id": 3,
"language_name": "Amharic",
"api_l_code": "am"
},
{
"id": 4,
"language_name": "Hungarian",
"api_l_code": "hu"
},
{
"id": 5,
"language_name": "Greek",
"api_l_code": "el"
}
]
},
"status": "success",
"message": "languages list"
}
Allow you to get voice types for text to speech conversion
Parameter | Type | Description |
---|---|---|
language | String | Target language of voice output |
{
"language":"en"
}
Success Response: 200 ok
{
"result": {
"voicetypes": [
{
"v_id": 1,
"voice_name": "Voice 1",
"gender": "F",
"locale": "en-us",
"l_name": "english",
"language_name": "English",
"api_l_code": "en"
},
{
"v_id": 2,
"voice_name": "Voice 2",
"gender": "MF",
"locale": "en-us",
"l_name": "english",
"language_name": "English",
"api_l_code": "en"
}
]
},
"status": "success",
"message": "languages list"
}
Allow you to translate the text to speech
Parameter | Type | Description |
---|---|---|
v_id | Integer | voice id from voice type api |
text | String | Text to translate |
{
"v_id":1,
"text":"hello john"
}
Success Response: 200 ok
{
"result": {
"audio_file_path": "https://api.neuranextai.com/tts/download?fln=tts_1728372933748.wav"
},
"status": "success",
"message": "This translated file available only for 2 hours"
}
Allow you to translate an audio file to text
Parameter | Type | Description |
---|---|---|
t_file | file | File for translation |
t_source | String | Language of audio file |
t_target | String | Target language of text |
form-data
t_file:file
t_source:en
t_target:es
{
"result": {
"translated_file_url": "https://api.neuranextai.com/ttf/download?fln=tr_1727880405243.txt"
},
"status": "success",
"message": "translated text"
}
NeuraNext AI is a cutting-edge platform offering seamless language solutions, including translation, voice-to-text, and text-to-voice conversion services.