List supported languages
curl --request GET \
--url https://stt.omnia-voice.com/languages \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://stt.omnia-voice.com/languages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://stt.omnia-voice.com/languages"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"maxPerRequest": 10,
"engines": {}
}{
"error": "<string>",
"message": "<string>",
"code": "INVALID_API_KEY"
}Languages
List supported languages
Supported BCP-47 codes per engine, with a stable or preview status.
No authentication required.
v1 covers /transcribe, /batch and /stream. v2 covers /v2/stream.
On v1 the languages option restricts recognition to the codes you pass; on
v2 it biases recognition toward them while detection stays automatic.
GET
/
languages
List supported languages
curl --request GET \
--url https://stt.omnia-voice.com/languages \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://stt.omnia-voice.com/languages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://stt.omnia-voice.com/languages"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"maxPerRequest": 10,
"engines": {}
}{
"error": "<string>",
"message": "<string>",
"code": "INVALID_API_KEY"
}Authorizations
Query Parameters
Limit to one engine. Default both.
Available options:
v1, v2 Comma-separated codes to check. Returns support and status per engine instead of the full list.
Example:
"et-EE,ru-RU"