GET
/
v1
/
codings
/
{codingId}
curl --request GET \
  --url https://api.sully.ai/v1/codings/{codingId} \
  --header 'X-ACCOUNT-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>'
{
  "data": {
    "id": "coding_EXAMPLE123456789",
    "status": "completed",
    "created_at": "2025-05-08T15:07:54.984Z",
    "updated_at": "2025-05-08T15:08:22.499Z",
    "processing_time_ms": 27340.929076,
    "result": {
      "diagnoses": [
        {
          "id": "diagnosis-example-1",
          "code": {
            "coding": [
              {
                "system": "http://hl7.org/fhir/sid/icd-10-cm",
                "code": "I10",
                "display": "Essential (primary) hypertension"
              }
            ],
            "text": "Hypertension"
          },
          "text_span": {
            "start_char": 1022,
            "end_char": 1039,
            "text": "slightly elevated"
          }
        }
      ],
      "procedures": [
        {
          "id": "procedure-example-1",
          "code": {
            "coding": [
              {
                "system": "http://www.ama-assn.org/go/cpt",
                "code": 93000,
                "display": "Electrocardiogram, routine ECG with at least 12 leads; with interpretation and report"
              }
            ],
            "text": "EKG"
          },
          "text_span": {
            "start_char": 2124,
            "end_char": 2127,
            "text": "EKG"
          }
        }
      ]
    }
  }
}

Authorizations

X-API-KEY
string
header
required
X-ACCOUNT-ID
string
header
required

Path Parameters

codingId
string
required

ID of the coding analysis to retrieve

Example:

"coding_EXAMPLE123456789"

Response

200
application/json

Coding analysis result

Response containing the complete coding analysis results