cURL
curl --request POST \ --url https://api.worqhat.com/api/ai/speech-text \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form keep_fillers=false \ --form enable_formatting=true \ --form enable_profanity_filters=true \ --form audio=@example-file.txt
{ "data": { "text": "<string>", "speaker_labels": [ { "speaker": "<string>", "text": "<string>" } ], "timestamps": [ { "word": "<string>", "start_time": 123, "end_time": 123, "duration": 123 } ], "processingTime": 123, "processingId": "<string>", "processingCount": 123 } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Upload an audio file for speech-to-text processing.
The body is of type object.
object
Speech successfully converted to text
The response is of type object.
Was this page helpful?