Skip to main content
UpdatedAdded Medication orders (LOINC 52471-0) as a supported note section to enable Medication orders in the note generation process for the Headed Web SDK.
Quick summary
Note sections divide into standard parts such as “Chief Complaint,” “Physical Exam,” and “Assessment and Plan.” Suki uses codes to identify each section, which ensures seamless integration with your EHR system.
Note sections is supported by: APIs, Web SDK, Mobile SDK, Headless Web SDK
Note sections divide clinical notes into standard parts such as “Chief Complaint,” “Physical Exam,” and “Assessment and Plan.” This organized structure make clinical notes easier to read and ensures seamless integration with your EHR system. Suki uses codes to identify each section. Because LOINC is widely adopted in healthcare, notes labeled this way map consistently across EHR systems and partner applications. When you specify the note sections, you get the following benefits:
  • Better organization: Content is automatically sorted into the right sections
  • EHR ready: Notes match the format your EHR expects
  • Industry standard: LOINC codes are recognized across healthcare systems
  • Customizable: Choose only the sections you need for your workflow

How Note sections improve clinical documentation

Note sections help Suki produce documentation that clinicians can review and submit with less restructuring. Without note sections, generated content is harder to place in the chart. With the right LOINC set, providers spend less time moving text between sections and more time confirming clinical accuracy.

How Note sections work

When you start an , you specify which sections you want in your note by providing their LOINC codes. Suki listens to the conversation and automatically organizes what’s discussed into those sections. Example: If you specify “Chief Complaint” (10154-3), “History of Present Illness” (10164-2), and “Physical Exam” (29545-1), Suki will:
  • Put information about why the patient is visiting into the Chief Complaint section
  • Organize the patient’s story into the History of Present Illness section
  • Capture exam findings into the Physical Exam section
The generated note includes each section with its LOINC code, making it easy to map directly to your EHR’s structure.

Supported Note sections

Use this table to configure ambient note generation. Each row is a clinical section Suki supports out of the box. You request a section by its LOINC code, not by free-text title. What that means in practice:
  • LOINC code is the stable identifier you send in session context or SDK options (for example 10154-3 for Chief Complaint).
  • Section common name is the clinical label partners and EHRs usually recognize. Suki uses the LOINC you pass to place conversation content into that section.
  • You can request any combination from this list. You do not need every section for every visit. Match the list to your note template and specialty workflow.
If you pass a code that is not in this table, that section will not be generated. Keep your configuration aligned with the codes below.

Choosing your sections

Select sections that match your clinical workflow and EHR requirements. Here are some common configurations:
Start with a few essential sections and add more as needed. Adjust your configuration anytime based on what works best for your workflow.

How to use Note sections in your application

In every integration path, the workflow is the same: choose the LOINC sections your clinical note needs, pass them with the ambient session, complete capture, then map the returned sections into your EHR. The API or SDK implementation changes by product. Click the tabs below to see the implementation details for your integration path.
Pass LOINC codes in the Context API body, then read section content from the content APIs after generation.

Choose LOINC Sections

Pick the section codes that match your note template. Start with a small set such as Chief Complaint (10154-3), History of Present Illness (10164-2), Physical Exam (29545-1), and Assessment and Plan (51847-2).

Create the Ambient Session

Create the session with the ambient sessions API. Keep the ambient_session_id for context and content calls.

Send Sections in Session Context

POST (or PATCH) context and include a sections array of { "loinc": "<code>" } objects.
Python
Use Seed ambient session Context when you have the complete context. Use Update ambient session Context to change only selected fields. Send either request before you end the session.

Stream Audio and Complete the Session

Stream encounter audio, then complete the session so Suki can generate the note for the sections you configured.

Read Generated Sections

After ending the session, poll Ambient session status until it returns completed. Then retrieve Ambient session content and map each item in summary by loinc_code into your EHR fields.
After generation, each section typically includes:
  • Section name: Readable title (for example, “Chief Complaint”)
  • Content: Text extracted from the conversation for that section
  • LOINC code: Standard identifier your integration uses for EHR mapping
Use those LOINC codes as the stable keys when you write content into your note template.
Last modified on July 24, 2026