List available ASR models
curl --request GET \
--url http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/modelsimport requests
url = "http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "62437",
CURLOPT_URL => "http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models")
.asString();require 'uri'
require 'net/http'
url = URI("http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"name": "whisper-small-quantized",
"display_name": "Whisper Small (Quantized)",
"version": "1.0.0",
"description": "OpenAI Whisper small model for general speech recognition",
"capabilities": {
"streaming": true,
"file_based": true,
"real_time": true,
"language_detection": true,
"confidence_scores": true
},
"parameters": {
"max_file_size_mb": 123,
"supported_formats": [
"<string>"
],
"sample_rates": [
123
],
"chunk_duration_ms": 123
}
}
]{
"error": {
"message": "Invalid request, missing 'file' parameter",
"type": "invalid_request_error",
"param": "file",
"code": null
}
}List available ASR models
Returns available ASR models with capabilities and supported parameters.
GET
/
transcriptions
/
models
List available ASR models
curl --request GET \
--url http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/modelsimport requests
url = "http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "62437",
CURLOPT_URL => "http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models")
.asString();require 'uri'
require 'net/http'
url = URI("http://{device-ip}:{device-port}/audio-analytics/v1/api/transcriptions/models")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"name": "whisper-small-quantized",
"display_name": "Whisper Small (Quantized)",
"version": "1.0.0",
"description": "OpenAI Whisper small model for general speech recognition",
"capabilities": {
"streaming": true,
"file_based": true,
"real_time": true,
"language_detection": true,
"confidence_scores": true
},
"parameters": {
"max_file_size_mb": 123,
"supported_formats": [
"<string>"
],
"sample_rates": [
123
],
"chunk_duration_ms": 123
}
}
]{
"error": {
"message": "Invalid request, missing 'file' parameter",
"type": "invalid_request_error",
"param": "file",
"code": null
}
}Response
List of available ASR models
Unique model identifier
Example:
"whisper-small-quantized"
Human-readable model name
Example:
"Whisper Small (Quantized)"
Model version
Example:
"1.0.0"
Model description
Example:
"OpenAI Whisper small model for general speech recognition"
Model capabilities
Show child attributes
Show child attributes
Model parameters and constraints
Show child attributes
Show child attributes
Was this page helpful?
⌘I

