> ## Documentation Index
> Fetch the complete documentation index at: https://docs.prem.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Audio Translation

> Check whether an audio-translation model is enabled before implementing the route.

<Warning>
  No enabled audio-translation model is currently documented. This page intentionally does not present a runnable model ID.
</Warning>

`@premai/api-sdk` `1.0.59` and the OpenAI-compatible proxy contain an audio-translation method and `/v1/audio/translations` route. A route existing in the package is not sufficient to make a translation example operational: the account must also receive an enabled translation-capable model from the model catalogue.

The August 4 catalogue did not return `openai/whisper-large-v3`. Do not use it as a runnable example.

## Check availability

List the live models and filter by type before implementing translation:

```bash theme={"system"}
curl http://127.0.0.1:8787/v1/models \
  -H "Authorization: Bearer $PREM_API_KEY"
```

A runnable translation example requires an enabled audio-translation model, a documented response contract, and a successful authenticated test with a representative audio file. No model currently meets those conditions in this guide.

For the currently enabled transcription path, see [Audio Transcription](/guides/audio-transcription).
