GET
/
v1
/
models
/
speech-to-text
curl -X GET https://api.woolball.xyz/v1/models/speech-to-text \
  -H "Authorization: Bearer <YOUR_API_KEY>"
{
  "data": [
    {
      "outputLanguage": true,
      "returnTimestamps": true,
      "model": "onnx-community/whisper-large-v3-turbo_timestamped",
      "dtype": "q8"
    }
  ]
}

Returns a list of available models for speech recognition.

Response

data
array

List of available speech recognition models

curl -X GET https://api.woolball.xyz/v1/models/speech-to-text \
  -H "Authorization: Bearer <YOUR_API_KEY>"
{
  "data": [
    {
      "outputLanguage": true,
      "returnTimestamps": true,
      "model": "onnx-community/whisper-large-v3-turbo_timestamped",
      "dtype": "q8"
    }
  ]
}