Skip to main content

STT Additional Features

When calling the STT API, you can use additional features by entering them in json format in the transcribe_options argument.
For how to call the API, please refer to the API Request page.

Korean Token Suppression Feature (suppress_korean)

Theta One STT basically performs code-switching predictions with mixed Korean and English.
(Example: I love 김밥.)

However, if you want Korean words to be written in English instead of Hangul, please set the suppress_korean option to true.

curl -X 'POST' \
'https://stt.thetaone-ai.com/transcribe' \
-H 'accept: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Content-Type: multipart/form-data' \
-F 'file=@audio.wav;type=audio/wav' \
-F 'transcribe_options={"suppress_korean": true}'

All prediction results will be written in English.
(Example: I love Gimbap.)