AI Services
Convert Speech to Text using AI
This endpoint is used to convert speech to text using AI. It accepts a Form Data containing the audio file and returns the the speech to text conversion results.
post/api/ai/speech-text
Response
Successful response
Example response
{
"status": "success",
"data": {
"text": "This is a sample text to be converted to speech.",
"speaker_labels": [
{
"speaker": "A",
"text": "This is a sample text to be converted to speech."
}
]
},
"processing_time": 888,
"processing_id": "4b139bfe-1f71-4345-b539-fa6c1700f166",
"processing_count": 12
}