> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corti.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Languages

> Learn about how languages are supported in Corti APIs

export const LanguageSearch = () => {
  const ref = React.useRef(null);
  React.useEffect(() => {
    if (!ref.current) return;
    const table = ref.current.parentElement.querySelector('table');
    if (!table) return;
    const rows = Array.from(table.querySelectorAll('tbody tr'));
    const input = ref.current.querySelector('input');
    const select = ref.current.querySelector('select');
    if (!input || !select) return;
    const apply = () => {
      const q = (input.value || '').toLowerCase().trim();
      const tier = select.value;
      rows.forEach(row => {
        const cells = row.querySelectorAll('td');
        const name = (cells[0]?.textContent || '').toLowerCase();
        const code = (cells[1]?.textContent || '').toLowerCase();
        const rowTier = (cells[2]?.textContent || '').trim();
        const textMatch = !q || name.indexOf(q) !== -1 || code.indexOf(q) !== -1;
        const tierMatch = !tier || rowTier === tier;
        row.style.display = textMatch && tierMatch ? '' : 'none';
      });
    };
    input.addEventListener('input', apply);
    select.addEventListener('change', apply);
    return () => {
      input.removeEventListener('input', apply);
      select.removeEventListener('change', apply);
    };
  }, []);
  return <div ref={ref} style={{
    display: 'flex',
    gap: '12px',
    flexWrap: 'wrap',
    marginBottom: '16px'
  }}>
      <input type="text" aria-label="Search by language or language code" placeholder="Search by language or code... Filter by tier..." style={{
    flex: '1 1 240px',
    maxWidth: '400px',
    padding: '8px 12px',
    fontSize: '14px',
    border: '1px solid var(--border, #e5e7eb)',
    borderRadius: '8px',
    backgroundColor: 'transparent',
    color: 'inherit',
    outline: 'none'
  }} />
      <select aria-label="Filter by performance tier" style={{
    padding: '8px 12px',
    fontSize: '14px',
    border: '1px solid var(--border, #e5e7eb)',
    borderRadius: '8px',
    backgroundColor: 'transparent',
    color: 'inherit',
    outline: 'none'
  }}>
        <option value="">All tiers</option>
        <option value="Base">Base</option>
        <option value="Enhanced">Enhanced</option>
        <option value="Premier">Premier</option>
      </select>
    </div>;
};

Corti speech to text and text generation are specifically designed for use in the healthcare domain. Speech to text (STT) language models are designed to balance recognition speed, performance, and accuracy. Text generation LLMs accept various inputs depending on the workflow (e.g., transcripts or facts) and have defined guardrails to support quality assurance of facts and documents outputs.

<Tip>
  The `language codes` listed below are used in API requests to define output language for speech to text and document generation.

  * Use the `GET/languages/` request [here](/api-reference/languages/list-languages) to retrieve a list of available languages per endpoint.
  * Learn more about speech to text endpoints [here](/stt/overview).
  * Learn how to query the API for document templates available by language [here](/textgen/templates#retrieving-available-templates).
</Tip>

***

## Speech to Text Performance Tiers

Corti speech to text uses a tier system to categorize functionality and performance that is available per language:

| Tier         | Description                                                                                                      | <Tooltip tip="Number of unique medical terms included in data sets used for speech to text model quality and performance evaluations">Medical Terminology Validation</Tooltip> |
| :----------- | :--------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| **Base**     | AI-powered speech recognition, ready to integrate with healthcare IT solutions                                   |                                                                                  `Up to 1,000`                                                                                 |
| **Enhanced** | Base plus optimized medical vocabulary for a variety of specialties and improved support for real-time dictation |                                                                                 `1,000-99,999`                                                                                 |
| **Premier**  | Enhanced plus speech to text models delivering the best performance in terms of accuracy, quality, and latency   |                                                                                   `100,000+`                                                                                   |

***

## Language Availability per Endpoint

The table below summarizes languages supported by the Corti API and how they can be used with speech to text endpoints (`Transcribe`, `Streams`, and `Transcripts`) and text generation endpoints (`Documents`):

<div style={{ overflowX: 'auto' }}>
  <LanguageSearch />

  | <Tooltip tip="STT output language">Language</Tooltip> | <Tooltip tip="Use this Language Code in API configurations">Code<sup>1</sup></Tooltip> | <Tooltip tip="Performance tier supported per language">Performance</Tooltip> | <Tooltip tip="Real-time dictation">[Transcribe](/api-reference/transcribe)</Tooltip> | <Tooltip tip="Real-time FactsR extraction">[Streams](/api-reference/streams)</Tooltip> | <Tooltip tip="Asynchronous speech to text">[Transcripts](/api-reference/transcripts/create-transcript)</Tooltip> | <Tooltip tip="Generate documents">[Documents<sup>2</sup>](/api-reference/guided-documents/generate-a-structured-document)</Tooltip> |
  | :---------------------------------------------------- | :------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------: | :----------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------: |
  | Arabic                                                |                                          `ar`                                          |                                   Enhanced                                   |                                                                                      |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                     <Icon icon="circle-check" />                                                    |
  | Bulgarian                                             |                                          `bg`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Cantonese                                             |                                          `yue`                                         |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Croatian                                              |                                          `hr`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Czech                                                 |                                          `cs`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Danish                                                |                                          `da`                                          |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Dutch                                                 |                                          `nl`                                          |                                   Enhanced                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | English (US)                                          |                                  `en` or<br />`en-US`                                  |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | English (AU)                                          |                                         `en-AU`                                        |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | English (UK)                                          |                                         `en-GB`                                        |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Estonian                                              |                                          `et`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Finnish                                               |                                          `fi`                                          |                                   Enhanced                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | French                                                |                                          `fr`                                          |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | German                                                |                                          `de`                                          |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Greek                                                 |                                          `el`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Hebrew                                                |                                          `he`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Hindi                                                 |                                          `hi`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Hungarian                                             |                                          `hu`                                          |                                   Enhanced                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Italian                                               |                                          `it`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Japanese                                              |                                          `ja`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Korean                                                |                                          `ko`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Latvian                                               |                                          `lv`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Lithuanian                                            |                                          `lt`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Malay                                                 |                                          `ms`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Mandarin                                              |                                          `cmn`                                         |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Maltese                                               |                                          `mt`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Marathi                                               |                                          `mr`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Norwegian                                             |                                          `no`                                          |                                   Enhanced                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Polish                                                |                                          `pl`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Portuguese                                            |                                          `pt`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Romanian                                              |                                          `ro`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Russian                                               |                                          `ru`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Slovakian                                             |                                          `sk`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Slovenian                                             |                                          `sl`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Spanish                                               |                                          `es`                                          |                                   Enhanced                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Swahili                                               |                                          `sw`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Swedish                                               |                                          `sv`                                          |                                   Enhanced                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Swiss French                                          |                                         `fr-CH`                                        |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Swiss German                                          |                                  `gsw-CH`<sup>3</sup>                                  |                                   Enhanced                                   |                             <Icon icon="circle-check" />                             |                        <Icon icon="circle-check" /><sup>4</sup>                        |                                           <Icon icon="circle-check" />                                           |                                                                                                                                     |
  | Swiss High German                                     |                                   `de-CH`<sup>3</sup>                                  |                                    Premier                                   |                             <Icon icon="circle-check" />                             |                        <Icon icon="circle-check" /><sup>4</sup>                        |                                           <Icon icon="circle-check" />                                           |                                                     <Icon icon="circle-check" />                                                    |
  | Tamil                                                 |                                          `ta`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Thai                                                  |                                          `th`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Turkish                                               |                                          `tr`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Ukrainian                                             |                                          `uk`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Urdu                                                  |                                          `ur`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
  | Vietnamese                                            |                                          `vi`                                          |                                     Base                                     |                             <Icon icon="circle-check" />                             |                              <Icon icon="circle-check" />                              |                                                                                                                  |                                                                                                                                     |
</div>

<br />

<Info>
  **Notes:**<br />
  <sup>1</sup> Use the listed language codes for the parameters `primaryLanguage` in `transcribe`, `streams`, and `transcripts` STT requests, `outputLanguage` parameter in `streams` "facts" configuration, and `outputLanguage` in "create documents" requests.

  <sup>2</sup> Template(s) or section(s) in the defined output must be available for successful document generation. Adding `documents` support for languages without a check-mark can be provided upon request, or you can [build it out yourself](/textgen/template-creation).

  <sup>3</sup> Configure `primaryLanguage` as `gsw-CH` for dialectical Swiss German workflows (e.g., conversational AI scribing), and `de-CH` for Swiss High German dictation.

  <sup>4</sup> For Swiss German `/streams` configuration: Use `gsw-CH` for "transcription" `primaryLanguage` and `de-CH` for "facts" `outputLanguage`.
</Info>

<br />

***

## Language Translation

* Translation (audio capture in one language with transcript output in a different language) is not officially supported in the Corti API at this time.
* Some general support for translation of `transcripts` in English to `facts` in other languages (e.g. German, French, Danish, etc.) is available in [streams](/textgen/facts_realtime#using-the-api) or [extract Facts](/api-reference/facts/extract-facts) requests.
* Additional translation language-pair combinations are not quality assessed or performance benchmarked.

<br />

<Note>Please [contact us](mailto:help@corti.ai) if you are interested in a language that is not listed here, need help with tiers and endpoint definitions, or have questions about how to use language codes in API requests.</Note>
