v7

latestOpenAPI 3.1.0raw.githubusercontent.com2025-06-30132748.5 KB
Codings

Get a coding analysis by ID

Retrieves a coding analysis result by ID

get/v1/codings/{codingId}

Path parameters

codingIdstring required
Example:coding_EXAMPLE123456789

ID of the coding analysis to retrieve

Response

Coding analysis result

Example response

{
  "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"
              },
              {
                "system": "http://snomed.info/sct",
                "code": "59621000",
                "display": "Essential 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",
                "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"
          }
        }
      ]
    }
  }
}