Skip to main content
POST
/
v1
/
bridges
/
jambonz
/
stt
/
{model_variant}
Jambonz STT Bridge
curl --request POST \
  --url https://api.slng.ai/v1/bridges/jambonz/stt/{model_variant} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form audio='@example-file' \
  --form language=en-US
{
  "is_final": true,
  "alternatives": [
    {
      "confidence": 123,
      "transcript": "<string>"
    }
  ],
  "channel": 123,
  "language": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.slng.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key issued by SLNG. Pass as Authorization: Bearer <token>.

Path Parameters

model_variant
enum<string>
required

Target STT model. Must support WebSocket streaming with final_transcript.

Available options:
deepgram/nova:2,
deepgram/nova:3,
deepgram/nova:3-medical,
reson8/reson8stt:v1,
slng/deepgram/nova:3-en,
slng/deepgram/nova:3-es,
slng/deepgram/nova:3-hi,
slng/deepgram/nova:3-kn,
slng/deepgram/nova:3-mr,
slng/deepgram/nova:3-multi,
slng/deepgram/nova:3-ta,
slng/deepgram/nova:3-te,
slng/openai/whisper:large-v3,
soniox/speech-ai:rt-v4

Query Parameters

region
enum<string>

Target region override. Auto-selected if not provided. Equivalent to the X-Region-Override header; the header takes precedence when both are set.

Available options:
ap-southeast-2,
eu-north-1,
us-east-1
world-part
enum<string>

Target world part override. Auto-selected if not provided. Equivalent to the X-World-Part-Override header; the header takes precedence when both are set.

Available options:
ap,
eu,
na

Body

Jambonz STT request. Provide either audio (multipart upload) or url (publicly accessible HTTPS URL).

audio
file

Audio file (multipart) or base64-encoded audio (JSON).

url
string

Publicly accessible audio URL.

Example:

"https://docs.slng.ai/audio/hello.wav"

language
string

Language code for recognition (e.g., en-US).

encoding
enum<string>

Audio encoding format.

Available options:
LINEAR16
sampleRateHz
enum<integer>

Audio sample rate in Hz.

Available options:
8000,
16000
interimResults
boolean

Enable interim (partial) transcription results.

hints
string[]

Speech recognition hints/phrases.

boostValues
number[]

Boost values corresponding to hints.

Response

Transcription successful.

Cognigy STT transcription response.

type
enum<string>
required

Response type.

Available options:
transcription
is_final
boolean
required

Whether this is a final transcription.

alternatives
object[]
required

Transcription alternatives.

channel
integer

Audio channel number.

language
string

Detected language code.