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

# Supported Medical Specialties

> Complete list of 100+ medical specialties supported by the Suki Platform

export const UCSearchIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
    <path fill="none" d="M11 17.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13z" />
    <path d="m21 21-4.3-4.3" />
  </svg>;

<div className="quick-summary-wrapper">
  <div className="quick-summary-header">
    <span className="quick-summary-icon" aria-hidden="true" />

    <span className="quick-summary-title">Quick summary</span>
  </div>

  <div className="quick-summary-content">
    A Medical Specialty is the type of care a provider (doctor) practices, like Cardiology, Pediatrics, or Emergency Medicine. When you tell Suki what specialty a provider (doctor) has, Suki generates notes that match how that specialty works.
  </div>

  <div className="quick-summary-footer">
    <span className="quick-summary-footer-icon" aria-hidden="true" />

    <span className="quick-summary-footer-text">Last updated:</span>
    <span className="quick-summary-footer-date">July 2026</span>
  </div>
</div>

<Info>
  **Specialties is supported by:** APIs, Web SDK, Mobile SDK, Headless Web SDK
</Info>

A Medical Specialty is the type of care a <Tooltip tip="A healthcare professional such as a physician, APP, or nurse who documents care. In Suki integrations, provider identity ties sessions, preferences, and generated notes to the correct clinician." cta="View in Glossary" href="/Glossary/p">provider</Tooltip> (doctor) practices, like Cardiology, Pediatrics, or Emergency Medicine. When you tell Suki what specialty a provider has, Suki generates notes that match how that specialty works.

For example, a **Cardiologist** and a **Pediatrician** have different specialties, and the notes that Suki needs to generate for them will be different.

* **Cardiologist**: Uses terms like "ejection fraction," "stent placement," "cardiac catheterization"
* **Pediatrician**: Uses terms like "growth percentile," "vaccination schedule," "developmental milestones"

When you specify the specialty, Suki:

* **Uses the right medical terms** for that specialty
* **Recognizes specialty-specific abbreviations** correctly
* **Structures notes** the way that specialty typically documents
* **Provides relevant suggestions** that match that specialty's workflow

As a result, providers get more accurate notes that match how that specialty actually works in practice.

## How Medical Specialty improves clinical documentation

Medical Specialty context helps Suki interpret the conversation using the language and documentation patterns of that clinical domain.

| What you configure                                            | How the note gets better                                         |
| ------------------------------------------------------------- | ---------------------------------------------------------------- |
| Provider specialty (for example `CARDIOLOGY` or `PEDIATRICS`) | Specialty terms and abbreviations are recognized correctly       |
| Specialty-aware generation                                    | Notes follow how that specialty typically documents care         |
| Consistent specialty on the provider or session               | Output stays aligned across visits for the same type of practice |

Without specialty context, notes can miss domain-specific meaning or use generic wording. With the right specialty, generated documentation is usually closer to what the clinician would write, so review and edit time go down.

## How Medical Specialty works

When you start an <Tooltip tip="A single, time-bound instance of an ambient recording for a specific patient encounter that captures clinical conversations." cta="View in Glossary" href="/Glossary/a">ambient session</Tooltip>, specify the provider's specialty. Suki uses this information throughout the session to generate notes that match the specialty's documentation standards and terminology.

<Note>
  Suki supports 120+ medical specialties. We regularly add new specialties as they become available. If you need a specialty that's not listed, contact support.
</Note>

## How to use Medical Specialty in your application

Use the Medical Specialty **Value** from the table below, such as `CARDIOLOGY`, `PEDIATRICS`, or `FAMILY_MEDICINE`. Pass the value where your integration sets provider context. The exact place depends on the product you use.

Click the tabs below to see the implementation details for your integration path.

<Tabs>
  <Tab title="Ambient APIs">
    Send provider specialty in ambient session context. Use `provider.specialty` when you seed or update context for the session.

    <Steps>
      <Step title="Choose the Specialty Value" icon="stethoscope">
        Pick the specialty code from the supported specialties table. Use the code value, not the display name. For example, send `CARDIOLOGY`, not `Cardiology`.
      </Step>

      <Step title="Create the Ambient Session" icon="play">
        Create the ambient session first and store the returned `ambient_session_id`.
      </Step>

      <Step title="Send Provider Context" icon="sliders">
        Use the [Context API](/api-reference/ambient-sessions/context) or [Update Context API](/api-reference/ambient-sessions/update-context) to pass the specialty before you end the session.

        ```python Python theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
        payload = {
            "provider": {
                "specialty": "CARDIOLOGY",
                "provider_role": "ATTENDING",
            }
        }
        ```

        Suki uses this specialty context when it generates the clinical note.
      </Step>

      <Step title="Generate the Note" icon="file-lines">
        Stream audio, end the session, and retrieve the generated content as usual. The note uses terminology and structure that match the specialty you provided.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Web SDK">
    Pass the provider specialty when you create `SukiAuthManager`. The Web SDK uses this provider-level specialty for ambient note generation.

    <Steps>
      <Step title="Choose the Specialty Value" icon="stethoscope">
        Pick the specialty code from the supported specialties table. Use the code value, such as `CARDIOLOGY`.
      </Step>

      <Step title="Add Specialty to Authentication" icon="key">
        Set `providerSpecialty` when you create `SukiAuthManager`.

        ```javascript JavaScript theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
        import { SukiAuthManager } from "@suki-sdk/core";
        import { initialize } from "@suki-sdk/js";

        const authManager = new SukiAuthManager({
          partnerId: "<partner_id>",
          partnerToken: "<partner_token>",
          providerName: "John Doe",
          providerOrgId: "1234",
          providerSpecialty: "CARDIOLOGY",
          environment: "production",
          loginOnInitialize: true,
          providerId: "1234567890",
        });

        const sdkClient = initialize({ authManager });
        ```

        Refer to [Ambient implementation](/web-sdk/guides/ambient-implementation) for the full Web SDK setup.
      </Step>

      <Step title="Mount the Ambient Experience" icon="window">
        Mount the Web SDK as usual. You do not need to send provider specialty again in `ambientOptions`.
      </Step>

      <Step title="Generate the Note" icon="file-lines">
        The provider captures and submits the ambient session in the Web SDK. Suki uses the provider specialty from authentication when it generates the note.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Headless Web SDK">
    Pass specialty when you authenticate the provider, and include it in session context when you want the active ambient session to carry provider context.

    <Steps>
      <Step title="Choose the Specialty Value" icon="stethoscope">
        Pick the specialty code from the supported specialties table. Use the code value, not the display name.
      </Step>

      <Step title="Register or Authenticate the Provider" icon="key">
        If `autoRegister` is `true`, pass `providerSpecialty` with `providerName` and `providerOrgId` so registration has the provider's specialty.

        Refer to [Authentication hook](/headless-web-sdk/guides/hooks/auth-hook) for the full auth configuration.
      </Step>

      <Step title="Set Specialty in Session Context" icon="sliders">
        After `start()` and before `submit()`, call `setSessionContext` with provider specialty for the active session.

        ```tsx React theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
        await setSessionContext({
          provider: {
            specialty: "CARDIOLOGY",
          },
        });
        ```

        Refer to [Ambient session hook](/headless-web-sdk/guides/hooks/ambient-session-hook#session-context) for the full session context shape.
      </Step>

      <Step title="Submit the Session" icon="check">
        Submit the session as usual. Suki uses the specialty context when it generates the clinical note.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Mobile SDK">
    Pass specialty with `SukiAmbientConstant.kProviderContext` after you create the ambient session and before note generation.

    <Steps>
      <Step title="Choose the Specialty Value" icon="stethoscope">
        Pick the specialty code from the supported specialties table. Use the code value, such as `CARDIOLOGY`.
      </Step>

      <Step title="Create the Ambient Session" icon="play">
        Call `createSession(withSessionInfo:)` and store the returned `sessionId`.
      </Step>

      <Step title="Set Provider Context" icon="sliders">
        Call `setSessionContext(with:)` and pass `kSpeciality` inside `kProviderContext`.

        ```swift Swift theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
        let contextDetail: [String: AnyHashable] = [
            SukiAmbientConstant.kProviderContext: [
                SukiAmbientConstant.kSpeciality: "CARDIOLOGY"
            ]
        ]

        do {
            try SukiAmbientCoreManager.shared.setSessionContext(with: contextDetail) { result in
                switch result {
                case .success:
                    print("Specialty updated successfully")
                case .failure(let error):
                    print("Unable to update specialty: \(error)")
                }
            }
        } catch {
            print("Unable to set session context: \(error)")
        }
        ```

        Refer to [Provide clinical context](/mobile-sdk/ambient-guides/provide-clinical-context) for the full context payload.
      </Step>

      <Step title="Record and End the Session" icon="microphone">
        Start recording, capture the visit, then end the session. Suki uses the specialty context when it generates the note.
      </Step>
    </Steps>
  </Tab>
</Tabs>

<Note>
  If you don't specify a specialty, Suki defaults to `FAMILY_MEDICINE`. For best results, always specify the provider's actual specialty.
</Note>

## Supported specialties

Suki supports the following Medical Specialties. Use the **Value** column when specifying a specialty in your code:

<div data-specialties-table-root>
  <div className="suki-use-case-search-wrap specialties-table-search-wrap">
    <span aria-hidden="true">
      <UCSearchIcon />
    </span>

    <input type="search" className="suki-use-case-search" placeholder="Search specialties" aria-label="Search supported specialties by value or description" autoComplete="off" />
  </div>

  <p className="specialties-table-empty" hidden>
    No specialties match your search. Try a different term.
  </p>

  | S.No | Value                                         | Description                                      |
  | ---- | --------------------------------------------- | ------------------------------------------------ |
  | 1    | NA                                            | N/A - No Specialty                               |
  | 2    | ALLERGY\_AND\_IMMUNOLOGY                      | Allergy and Immunology                           |
  | 3    | ANESTHESIOLOGY                                | Anesthesiology                                   |
  | 4    | CARDIOLOGY                                    | Cardiology                                       |
  | 5    | CRITICAL\_CARE                                | Critical Care                                    |
  | 6    | DERMATOLOGY                                   | Dermatology                                      |
  | 7    | EMERGENCY\_MEDICINE                           | Emergency Medicine                               |
  | 8    | ENDOCRINOLOGY                                 | Endocrinology                                    |
  | 9    | FAMILY\_MEDICINE                              | Family Medicine                                  |
  | 10   | GASTROENTEROLOGY                              | Gastroenterology                                 |
  | 11   | GENETICS                                      | Genetics                                         |
  | 12   | HEMATOLOGY                                    | Hematology                                       |
  | 13   | INFECTIOUS\_DISEASE                           | Infectious Disease                               |
  | 14   | INTERNAL\_MEDICINE                            | Internal Medicine                                |
  | 15   | MEDICAL\_ONCOLOGY                             | Medical Oncology                                 |
  | 16   | NEPHROLOGY                                    | Nephrology                                       |
  | 17   | NEUROLOGY                                     | Neurology                                        |
  | 18   | NEUROSURGERY                                  | Neurosurgery                                     |
  | 19   | NUCLEAR\_MEDICINE                             | Nuclear Medicine                                 |
  | 20   | OBSTETRICS\_GYNECOLOGY                        | Obstetrics and Gynecology                        |
  | 21   | OPHTHALMOLOGY                                 | Ophthalmology                                    |
  | 22   | ORTHOPEDIC\_SURGERY                           | Orthopedic Surgery                               |
  | 23   | OTOLARYNGOLOGY\_HEAD\_AND\_NECK               | Otolaryngology - Head and Neck Surgery           |
  | 24   | PALLIATIVE\_MEDICINE                          | Palliative Medicine                              |
  | 25   | PAIN\_MANAGEMENT                              | Pain Management                                  |
  | 26   | PATHOLOGY                                     | Pathology                                        |
  | 27   | PEDIATRICS                                    | Pediatrics                                       |
  | 28   | PHYSICAL\_MEDICINE\_AND\_REHABILITATION       | Physical Medicine and Rehabilitation             |
  | 29   | PLASTIC\_SURGERY                              | Plastic Surgery                                  |
  | 30   | PODIATRY                                      | Podiatry                                         |
  | 31   | PREVENTATIVE\_MEDICINE                        | Preventative Medicine                            |
  | 32   | PSYCHIATRY                                    | Psychiatry                                       |
  | 33   | PULMONOLOGY                                   | Pulmonology                                      |
  | 34   | RADIATION\_ONCOLOGY                           | Radiation Oncology                               |
  | 35   | RADIOLOGY\_DIAGNOSTIC                         | Radiology - Diagnostic                           |
  | 36   | RADIOLOGY\_INTERVENTIONAL                     | Radiology - Interventional                       |
  | 37   | RHEUMATOLOGY                                  | Rheumatology                                     |
  | 38   | SPORTS\_MEDICINE                              | Sports Medicine                                  |
  | 39   | SURGERY\_CARDIAC\_AND\_THORACIC               | Surgery - Cardiac and Thoracic                   |
  | 40   | SURGERY\_COLON\_AND\_RECTAL                   | Surgery - Colon and Rectal                       |
  | 41   | SURGERY\_GENERAL                              | Surgery - General                                |
  | 42   | SURGERY\_PEDIATRIC                            | Surgery - Pediatric                              |
  | 43   | SURGERY\_VASCULAR                             | Surgery - Vascular                               |
  | 44   | UROLOGY                                       | Urology                                          |
  | 45   | UNLISTED\_MEDICAL                             | Unlisted - Medical                               |
  | 46   | UNLISTED\_SURGICAL                            | Unlisted - Surgical                              |
  | 47   | LACTATION                                     | Lactation                                        |
  | 48   | NUTRITION                                     | Nutrition                                        |
  | 49   | VETERINARIAN                                  | Veterinarian                                     |
  | 50   | GERIATRICS                                    | Geriatrics                                       |
  | 51   | HOSPITAL\_MEDICINE                            | Hospital Medicine                                |
  | 52   | SLEEP\_MEDICINE                               | Sleep Medicine                                   |
  | 53   | FUNCTIONAL\_MEDICINE                          | Functional Medicine                              |
  | 54   | INTEGRATIVE\_MEDICINE                         | Integrative Medicine                             |
  | 55   | HEPATOLOGY                                    | Hepatology                                       |
  | 56   | PEDIATRIC\_ALLERGY\_AND\_IMMUNOLOGY           | Pediatric Allergy and Immunology                 |
  | 57   | PEDIATRIC\_CARDIOLOGY                         | Pediatric Cardiology                             |
  | 58   | PEDIATRIC\_ENDOCRINOLOGY                      | Pediatric Endocrinology                          |
  | 59   | PEDIATRIC\_CRITICAL\_CARE                     | Pediatric Critical Care                          |
  | 60   | DEVELOPMENTAL\_AND\_BEHAVIORAL\_PEDIATRICS    | Developmental and Behavioral Pediatrics          |
  | 61   | PEDIATRIC\_HOSPITAL\_MEDICINE                 | Pediatric Hospital Medicine                      |
  | 62   | PEDIATRIC\_NEPHROLOGY                         | Pediatric Nephrology                             |
  | 63   | PEDIATRIC\_RHEUMATOLOGY                       | Pediatric Rheumatology                           |
  | 64   | PEDIATRIC\_GASTROENTEROLOGY                   | Pediatric Gastroenterology                       |
  | 65   | PEDIATRIC\_PSYCHIATRY                         | Pediatric Psychiatry                             |
  | 66   | GYN\_ONCOLOGY                                 | Gyn-Oncology                                     |
  | 67   | REPRODUCTIVE\_ENDOCRINOLOGY\_AND\_INFERTILITY | Reproductive Endocrinology and Infertility (REI) |
  | 68   | UROGYNECOLOGY                                 | Urogynecology                                    |
  | 69   | SPINE\_SURGERY                                | Spine Surgery                                    |
  | 70   | INTERVENTIONAL\_CARDIOLOGY                    | Interventional Cardiology                        |
  | 71   | CARDIOLOGY\_AND\_ELECTROPHYSIOLOGY            | Cardiology and Electrophysiology                 |
  | 72   | HEART\_FAILURE\_AND\_TRANSPLANT\_CARDIOLOGY   | Heart Failure and Transplant Cardiology          |
  | 73   | ADULT\_CONGENITAL\_HEART\_DISEASE             | Adult Congenital Heart Disease                   |
  | 74   | GASTROENTEROLOGY\_ONCOLOGY                    | Gastroenterology Oncology                        |
  | 75   | SURGERY\_ONCOLOGY                             | Surgery Oncology                                 |
  | 76   | SURGERY\_BARIATRICS                           | Surgery Bariatrics                               |
  | 77   | INVASIVE\_CARDIOLOGY                          | Invasive Cardiology                              |
  | 78   | SURGERY\_THORACIC                             | Surgery Thoracic                                 |
  | 79   | SURGERY\_CARDIOVASCULAR                       | Surgery Cardiovascular                           |
  | 80   | PEDIATRIC\_PULMONOLOGY                        | Pediatric Pulmonology                            |
  | 81   | PEDIATRIC\_ADOLESCENT                         | Pediatric Adolescent                             |
  | 82   | TRANSPLANT\_NEPHROLOGY                        | Transplant Nephrology                            |
  | 83   | HEMATOLOGY\_AND\_ONCOLOGY                     | Hematology and Oncology                          |
  | 84   | MEDICINE\_BARIATRIC                           | Medicine Bariatric                               |
  | 85   | SURGERY\_TRAUMA                               | Surgery Trauma                                   |
  | 86   | BEHAVIORAL\_HEALTH                            | Behavioral Health                                |
  | 87   | URGENT\_CARE                                  | Urgent Care                                      |
  | 88   | COMPREHENSIVE\_CARE                           | Comprehensive Care                               |
  | 89   | OCCUPATIONAL\_MEDICINE                        | Occupational Medicine                            |
  | 90   | ADDICTION\_MEDICINE                           | Addiction Medicine                               |
  | 91   | CARDIAC\_IMAGING                              | Cardiac Imaging                                  |
  | 92   | TRANSPLANT\_HEPATOLOGY                        | Transplant Hepatology                            |
  | 93   | SPINAL\_ONCOLOGY\_AND\_SPINE\_TUMOR\_SURGERY  | Spinal Oncology and Spine Tumor Surgery          |
  | 94   | CONCIERGE\_MEDICINE                           | Concierge Medicine                               |
  | 95   | DRUG\_AND\_ALCOHOL\_REHAB                     | Drug and Alcohol Rehab                           |
  | 96   | TRANSPLANT\_PANCREAS                          | Transplant Pancreas                              |
  | 97   | TRANSPLANT\_INTESTINE                         | Transplant Intestine                             |
  | 98   | BONE\_MARROW\_TRANSPLANT                      | Bone Marrow Transplant                           |
  | 99   | VETERINARY\_URGENT\_CARE                      | Veterinary Urgent Care                           |
  | 100  | VETERINARY\_EMERGENCY\_AND\_CRITICAL\_CARE    | Veterinary Emergency and Critical Care           |
  | 101  | INPATIENT\_PSYCHIATRY                         | Inpatient Psychiatry                             |
  | 102  | NEUROMUSCULOSKELETAL\_MANIPULATIVE\_MEDICINE  | Neuromusculoskeletal Manipulative Medicine       |
  | 103  | EPILEPSY                                      | Epilepsy                                         |
  | 104  | NEUROIMMUNOLOGY                               | Neuroimmunology                                  |
  | 105  | HEADACHE                                      | Headache                                         |
  | 106  | VASCULAR\_NEUROLOGY                           | Vascular Neurology                               |
  | 107  | SURGERY\_BREAST                               | Surgery Breast                                   |
  | 108  | ACCIDENT\_AND\_INJURY                         | Accident and Injury                              |
  | 109  | CANCER\_GENETICS                              | Cancer Genetics                                  |
  | 110  | ONCOLOGY\_BREAST                              | Oncology Breast                                  |
  | 111  | ONCOLOGY\_CUTANEOUS                           | Oncology Cutaneous                               |
  | 112  | ONCOLOGY\_GENITOURINARY                       | Oncology Genitourinary                           |
  | 113  | ONCOLOGY\_HEAD\_AND\_NECK                     | Oncology Head and Neck                           |
  | 114  | INTERVENTIONAL\_PAIN                          | Interventional Pain                              |
  | 115  | ONCOLOGY\_ORTHOPEDIC                          | Oncology Orthopedic                              |
  | 116  | ONCOLOGY\_THORACIC                            | Oncology Thoracic                                |
  | 117  | ONCOLOGY                                      | Oncology                                         |
  | 118  | ONCOLOGY\_WOMENS                              | Oncology Womens                                  |
  | 119  | ORTHOPEDICS\_HAND                             | Orthopedics Hand                                 |
  | 120  | WOUND\_CARE                                   | Wound Care                                       |
</div>

## Getting the list via API

You can fetch the list of supported Medical Specialties by calling the Specialties API anytime. Some common use cases are:

* Display specialty options in a dropdown menu
* Validate specialty codes before sending them to Suki
* Keep your application in sync with Suki's latest specialty additions

<CardGroup cols={1}>
  <Card title="Specialties API" icon="code" arrow={true} href="/api-reference/info/specialties">
    Get the list of supported medical specialties via API
  </Card>
</CardGroup>

## Best practices

<Tip>
  * **Always specify the specialty**: Don't rely on the default. Providing the correct specialty improves note quality.
  * **Match your EHR**: Use the specialty that matches what's in your EHR system for consistency.
  * **Update when needed**: If a provider changes specialties, update the specialty in your session context.
  * **Use specific codes**: Choose the most specific specialty available (e.g., `PEDIATRIC_CARDIOLOGY` instead of `CARDIOLOGY` if applicable).
</Tip>
