Translates audio into English text
cURL
curl --request POST \ --url https://api.anyapi.ai/v1/audio/translations \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form file=@example-file \ --form model=whisper-1
{ "text": "<string>", "language": "<string>", "duration": 123 }
Bearer token authentication. Get your API key from the dashboard.
Successful response
The response is of type object.
object