Skip to main content
GET
/
api
/
v1
/
info
/
orders
/
coding-systems
Gets the list of supported medication coding systems.
curl --request GET \
  --url https://sdp.suki-stage.com/api/v1/info/orders/coding-systems \
  --header 'sdp_suki_token: <sdp_suki_token>'
{
  "coding_systems": [
    {
      "code": "RXCUI"
    }
  ]
}
Use this endpoint to get the list of supported medication coding systems.

Code examples

import requests

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

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

if response.status_code == 200:
    coding_systems_data = response.json()
    print("Supported Medication Coding Systems:")
    for item in coding_systems_data.get("coding_systems", []):
        print(f"  {item.get('code')}")
else:
    print(f"Failed to get medication coding systems: {response.status_code}")
    print(response.json())

Headers

sdp_suki_token
string
required

sdp_suki_token

Response

Success Response

Response body for the /info/orders/coding-systems endpoint

coding_systems
object[]

Information about supported medication coding systems

Last modified on April 20, 2026