Suki Developer Documentation v4.0.0 is now live. Check out the changelog for more information.
cURL
curl --request GET \ --url https://sdp.suki-stage.com/api/v1/info/loincs \ --header 'sdp_suki_token: <sdp_suki_token>'
{ "loincs": [ { "code": "10164-2", "common_name": "History of Present Illness" } ] }
Get list of supported LOINC codes for clinical note sections
import requests url = "https://sdp.suki.ai/api/v1/info/loincs" headers = { "sdp_suki_token": "<sdp_suki_token>" } response = requests.get(url, headers=headers) if response.status_code == 200: loincs_data = response.json() print("Supported LOINC Codes:") for loinc in loincs_data.get("loincs", []): print(f" {loinc.get('code')}: {loinc.get('common_name')}") else: print(f"Failed to get LOINC codes: {response.status_code}") print(response.json())
sdp_suki_token
Success Response
Response body for the /info/loincs endpoint
Information about supported section codes
Show child attributes
The LOINC code (e.g., "10164-2")
"10164-2"
Human-readable name for the LOINC code
"History of Present Illness"
Was this page helpful?