Skip to main content
GET
/
stt
/
models
curl https://api.60db.ai/stt/models \
  -H "Authorization: Bearer your-api-key"
{
  "success": true,
  "message": "STT models fetched successfully",
  "data": [
    {
      "id": "60db-stt-v01",
      "model_name": "60db STT v01",
      "description": "Non-hallucinating speech recognition supporting 39 languages with auto-detection, speaker diarization, and real-time streaming",
      "category": "speech-to-text",
      "type": "stt",
      "languages": 39,
      "features": [
        "auto_language_detection",
        "speaker_diarization",
        "word_timestamps",
        "code_switching_indic_english",
        "continuous_mode",
        "telephony_mulaw",
        "websocket_streaming"
      ]
    }
  ]
}
Returns the catalog of STT (transcription) models exposed by 60db. For Text-to-Speech models, use GET /tts/models.

Request

Headers

Authorization
string
required
Bearer token with your API key

Response

success
boolean
Indicates whether the request was successful
message
string
Status message
data
array
Array of STT model entries
data[].id
string
Unique model identifier (e.g. 60db-stt-v01)
data[].model_name
string
Human-readable display name
data[].description
string
Short description of the model’s capabilities
data[].category
string
Always "speech-to-text" for STT models
data[].type
string
Always "stt" for this endpoint
data[].languages
number
Number of supported transcription languages
data[].features
array
Feature flags advertised by this model: auto_language_detection, speaker_diarization, word_timestamps, code_switching_indic_english, continuous_mode, telephony_mulaw, websocket_streaming
curl https://api.60db.ai/stt/models \
  -H "Authorization: Bearer your-api-key"
{
  "success": true,
  "message": "STT models fetched successfully",
  "data": [
    {
      "id": "60db-stt-v01",
      "model_name": "60db STT v01",
      "description": "Non-hallucinating speech recognition supporting 39 languages with auto-detection, speaker diarization, and real-time streaming",
      "category": "speech-to-text",
      "type": "stt",
      "languages": 39,
      "features": [
        "auto_language_detection",
        "speaker_diarization",
        "word_timestamps",
        "code_switching_indic_english",
        "continuous_mode",
        "telephony_mulaw",
        "websocket_streaming"
      ]
    }
  ]
}

Notes

  • The id value is the same string reported by the session_started WebSocket event (see /ws/stt) and is stable across requests.
  • Currently only one STT model is exposed. Future versions (60db-stt-v02, domain-tuned variants, etc.) will appear as additional entries in this array without any breaking changes to the response shape.