1. Audio
  • Start
    • Product Intrduction
    • Quick to use
    • Using Nexhina in AI Coding Tools
  • API integration explanation
    • Quick Start
    • Getting an API Key
    • Authentication
    • Request URL
    • HTTP Status Codes
    • Streaming Output Guide
  • API Endpoints
    • Chat
      • Chat Completion
    • Models
      • List Available Models
    • Responses
      • Responses API
    • Embeddings
      • Text Embedding
    • Images
      • Text-to-Image
      • Image-to-Image
    • Audio
      • Text-to-Speech (TTS)
        POST
      • Speech-to-Text (STT)
        POST
      • Audio Translation
        POST
    • Video
      • Generate Video
    • Moderation
      • Content Moderation
    • Rerank
      • Rerank
  • Platform-related
    • Platform agreement
    • Privacy Policy
    • General Questions
  1. Audio

Audio Translation

POST
/v1/audio/translations
Translates an audio file into English text

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params multipart/form-dataRequired

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/v1/audio/translations' \
--header 'Authorization: Bearer <token>' \
--form 'file=@""' \
--form 'model="sensevoice-v1"' \
--form 'response_format="json"' \
--form 'temperature=""'

Responses

🟢200
application/json
Successfully returns translation result
Bodyapplication/json

Example
{
    "text": "Hello, welcome to the speech translation service."
}
🟠401
Modified at 2026-08-18 09:37:59
Previous
Speech-to-Text (STT)
Next
Generate Video
Built with