Skip to main content
GET
/
api
/
v1
/
info
Gets comprehensive system information.
curl --request GET \
  --url https://sdp.suki-stage.com/api/v1/info \
  --header 'sdp_suki_token: <sdp_suki_token>'
{
  "diagnosis_code_types": [
    {
      "code_type": "ICD10"
    }
  ],
  "encounter_types": [
    {
      "code": "AMBULATORY"
    }
  ],
  "loincs": [
    {
      "code": "10164-2",
      "common_name": "History of Present Illness"
    }
  ],
  "medication_coding_systems": [
    {
      "code": "RXCUI"
    }
  ],
  "medication_dosage_units": [
    {
      "code": "TAB"
    }
  ],
  "medication_frequency_types": [
    {
      "code": "ONE_A_DAY"
    }
  ],
  "medication_order_statuses": [
    {
      "code": "ACTIVE"
    }
  ],
  "medication_timings": [
    {
      "code": "WITH_MEALS"
    }
  ],
  "order_encounter_relations": [
    {
      "code": "CURRENT_ENCOUNTER"
    }
  ],
  "order_origins": [
    {
      "code": "SUKI_AMBIENT"
    }
  ],
  "provider_roles": [
    {
      "code": "ATTENDING"
    }
  ],
  "specialties": [
    {
      "code": "CARDIOLOGY"
    }
  ],
  "visit_types": [
    {
      "code": "ESTABLISHED_PATIENT"
    }
  ]
}

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.

Use this endpoint to get the list of supported codes, specialties, types, visit types, roles, code types, and medication order metadata (coding systems, dosage units, frequency types, timings, order statuses, encounter relations, and origins). You can also fetch each category with dedicated GET /api/v1/info/... routes listed under Info in the API reference.

Code examples

import requests

url = "https://sdp.suki.ai/api/v1/info"
headers = {
    "sdp_suki_token": "<sdp_suki_token>"
}

response = requests.get(url, headers=headers)

if response.status_code == 200:
    info = response.json()
    print("System Information:")
    print(f"LOINCs: {len(info.get('loincs', []))} codes")
    print(f"Specialties: {len(info.get('specialties', []))} specialties")
    print(f"Encounter Types: {len(info.get('encounter_types', []))} types")
    print(f"Visit Types: {len(info.get('visit_types', []))} types")
    print(f"Provider Roles: {len(info.get('provider_roles', []))} roles")
    print(f"Diagnosis Code Types: {len(info.get('diagnosis_code_types', []))} types")
    print(f"Medication coding systems: {len(info.get('medication_coding_systems', []))}")
    print(f"Medication dosage units: {len(info.get('medication_dosage_units', []))}")
    print(f"Medication frequency types: {len(info.get('medication_frequency_types', []))}")
    print(f"Medication timings: {len(info.get('medication_timings', []))}")
    print(f"Medication order statuses: {len(info.get('medication_order_statuses', []))}")
    print(f"Order encounter relations: {len(info.get('order_encounter_relations', []))}")
    print(f"Order origins: {len(info.get('order_origins', []))}")
else:
    print(f"Failed to get system information: {response.status_code}")
    print(response.json())

Headers

sdp_suki_token
string
required

sdp_suki_token

Response

Success Response

Response body for the /info endpoints with flexible data based on category

diagnosis_code_types
object[]

Information about supported diagnosis code types

encounter_types
object[]

Information about supported encounter types

loincs
object[]

Information about supported section codes

medication_coding_systems
object[]

Information about supported medication coding systems

medication_dosage_units
object[]

Information about supported medication dosage units

medication_frequency_types
object[]

Information about supported medication frequency types

medication_order_statuses
object[]

Information about supported medication order statuses

medication_timings
object[]

Information about supported medication timings

order_encounter_relations
object[]

Information about supported order encounter relations

order_origins
object[]

Information about supported order origins

provider_roles
object[]

Information about supported provider roles

specialties
object[]

Information about supported specialties

visit_types
object[]

Information about supported visit types

Last modified on April 20, 2026