# Translate audio

`POST /v1/audio/translations`

Translates audio into English text

## Authorizations

Bearer authentication — send `Authorization: Bearer <token>`.

## Request Body (multipart/form-data) — required

```json
{
  "type": "object",
  "properties": {
    "file": {
      "type": "string",
      "format": "binary",
      "example": ""
    },
    "model": {
      "type": "string",
      "example": ""
    },
    "prompt": {
      "type": "string",
      "example": ""
    },
    "response_format": {
      "type": "string",
      "example": ""
    },
    "temperature": {
      "type": "number",
      "example": ""
    }
  },
  "required": [
    "file",
    "model"
  ]
}
```

## Responses

### 200 — Translation returned

```json
{
  "type": "object",
  "properties": {
    "text": {
      "type": "string"
    }
  }
}
```
