> ## 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.

# Info APIs

> Reference data for specialties, diagnoses, encounter types, visit types, LOINC codes, and provider roles

The Info APIs enable partners to retrieve the specialties, encounter types, visit types, provider roles, LOINC codes, and diagnosis types Suki accepts when you register providers or create ambient sessions. Partners typically call these endpoints from their backend to populate pickers in their product and validate payloads before session or context requests.

You can fetch a combined catalog from System Information or request each category through its dedicated Info endpoint. Critically, Info endpoints return supported values only. They do not create ambient sessions or generate clinical notes.

Info APIs are called from your servers and authenticated with a Suki Token (`sdp_suki_token`). Response bodies are stable reference data you can cache on a release schedule that fits your product.

## Available endpoints

<Columns cols={3}>
  <Card title="System Information" href="/api-reference/info/information" arrow={true} icon="code">
    Retrieve platform system information for your integration
  </Card>

  <Card title="Supported LOINCs" href="/api-reference/info/loincs" arrow={true} icon="code">
    Retrieve supported LOINC codes for note sections and related fields
  </Card>

  <Card title="Diagnosis Codes" href="/api-reference/info/diagnosis" arrow={true} icon="code">
    Retrieve diagnosis code reference data for ambient requests
  </Card>

  <Card title="Supported Medical Specialties" href="/api-reference/info/specialties" arrow={true} icon="code">
    Retrieve supported medical specialties for provider registration and sessions
  </Card>

  <Card title="Encounter Types" href="/api-reference/info/encounter-types" arrow={true} icon="code">
    Retrieve supported encounter types for ambient sessions
  </Card>

  <Card title="Visit Types" href="/api-reference/info/visit-types" arrow={true} icon="code">
    Retrieve supported visit types for ambient sessions
  </Card>

  <Card title="Provider Roles" href="/api-reference/info/provider-roles" arrow={true} icon="code">
    Retrieve supported provider roles for ambient context
  </Card>
</Columns>

## Related guides

<Columns cols={3}>
  <Card title="Ambient Documentation" href="/documentation/concepts/ambient-clinical-notes/ambient-documentation" icon="book" cta="Learn more">
    Learn how ambient sessions use encounter and specialty context
  </Card>

  <Card title="Note Sections" href="/documentation/concepts/ambient-clinical-notes/note-sections" icon="book" cta="Learn more">
    See how LOINC-coded sections map into generated notes
  </Card>

  <Card title="Specialties" href="/documentation/concepts/ambient-clinical-notes/specialties" icon="book" cta="Learn more">
    Review specialty support for clinical notes
  </Card>
</Columns>

## Common use cases

<Columns cols={2}>
  <Card title="Populate specialty and encounter pickers">
    Use supported catalogs so registration and session forms only offer values Suki accepts.
  </Card>

  <Card title="Validate LOINC and diagnosis inputs">
    Check note sections and diagnosis payloads against supported codes before you seed ambient context.
  </Card>

  <Card title="Keep client catalogs current">
    Refresh Info catalogs on your release cycle so specialty, encounter, and role pickers stay aligned with Suki.
  </Card>

  <Card title="Set clinician role for the visit">
    Apply supported provider roles when building ambient session context for the encounter.
  </Card>
</Columns>
