Skip to main content
GET
/
medical
/
v1
/
suspects
/
{conditionId}
Get Suspect
curl --request GET \
  --url https://api.sandbox.metriport.com/medical/v1/suspects/{conditionId} \
  --header 'x-api-key: <api-key>'
curl -X GET 'https://api.metriport.com/medical/v1/suspects/11111111-1111-1111-1111-111111111111' \
  -H 'x-api-key: YOUR_API_KEY'
Analytics must be enabled for your account to receive data from this endpoint. Contact us to get started.
Returns a FHIR Bundle for a specific suspected condition. The first entry is the Condition resource with definition summaries and detail references in the evidence backbone. Subsequent entries are the full evidence resources (Observations, Procedures, MedicationRequests) that support the suspicion. For more context on suspecting and how to interpret results, see the Suspecting guide.

Path Params

conditionId
string
required
The id of the Condition returned by the list endpoint.

Response

A FHIR Bundle with type: "collection".
Condition
Condition
required
The suspected condition with verificationStatus set to unconfirmed. The evidence backbone contains the manifestation definition that triggered the suspect and detail references pointing to the evidence resources in the bundle.
Observation | Procedure | MedicationRequest
Observation | Procedure | MedicationRequest
Evidence resources sourced from the patient’s clinical record that support the suspicion. The bundle may contain any combination of the following resource types.
curl -X GET 'https://api.metriport.com/medical/v1/suspects/11111111-1111-1111-1111-111111111111' \
  -H 'x-api-key: YOUR_API_KEY'
Response
{
  "resourceType": "Bundle",
  "type": "collection",
  "entry": [
    {
      "fullUrl": "urn:uuid:55555555-5555-5555-5555-555555555555",
      "resource": {
        "resourceType": "Condition",
        "id": "11111111-1111-1111-1111-111111111111",
        "subject": {
          "reference": "Patient/00000000-0000-0000-0000-000000000000"
        },
        "code": {
          "coding": [
            {
              "system": "http://hl7.org/fhir/sid/icd-10-cm",
              "code": "N18.5",
              "display": "Chronic kidney disease, stage 5"
            }
          ]
        },
        "verificationStatus": {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
              "code": "unconfirmed",
              "display": "Unconfirmed"
            }
          ]
        },
        "extension": [
          {
            "url": "https://public.metriport.com/fhir/StructureDefinition/suspect-type",
            "valueString": "suspect"
          },
          {
            "url": "https://public.metriport.com/fhir/StructureDefinition/evidence-count",
            "valueInteger": 20
          },
          {
            "url": "https://public.metriport.com/fhir/StructureDefinition/first-evidence-date",
            "valueDate": "1997-06-27"
          },
          {
            "url": "https://public.metriport.com/fhir/StructureDefinition/last-evidence-date",
            "valueDate": "2001-07-23"
          },
          {
            "url": "https://public.metriport.com/fhir/StructureDefinition/hcc-code",
            "valueString": "326"
          },
          {
            "url": "https://public.metriport.com/fhir/StructureDefinition/job-id",
            "valueString": "22222222-2222-2222-2222-222222222222"
          }
        ],
        "evidence": [
          {
            "code": [
              {
                "coding": [
                  {
                    "system": "https://public.metriport.com/fhir/CodeSystem/suspect-manifestation",
                    "code": "ckd_stage5",
                    "display": "CKD Stage 5 (eGFR < 15 or Dialysis)"
                  }
                ],
                "text": "Stage 5 when either: (a) eGFR < 15 mL/min/1.73 m² on ≥2 distinct dates, or (b) any dialysis procedure code present."
              }
            ],
            "detail": [
              {
                "type": "Observation",
                "reference": "Observation/33333333-3333-3333-3333-333333333333"
              },
              {
                "type": "Observation",
                "reference": "Observation/44444444-4444-4444-4444-444444444444"
              }
            ]
          }
        ]
      }
    },
    {
      "fullUrl": "urn:uuid:66666666-6666-6666-6666-666666666666",
      "resource": {
        "resourceType": "Observation",
        "id": "33333333-3333-3333-3333-333333333333",
        "status": "final",
        "code": {
          "coding": [
            {
              "system": "http://loinc.org",
              "code": "33914-3"
            }
          ]
        },
        "effectiveDateTime": "2001-07-23",
        "valueQuantity": {
          "value": 13.59,
          "unit": "mL/min/1.73m2"
        }
      }
    },
    {
      "fullUrl": "urn:uuid:77777777-7777-7777-7777-777777777777",
      "resource": {
        "resourceType": "Observation",
        "id": "44444444-4444-4444-4444-444444444444",
        "status": "final",
        "code": {
          "coding": [
            {
              "system": "http://loinc.org",
              "code": "33914-3"
            }
          ]
        },
        "effectiveDateTime": "2001-06-15",
        "valueQuantity": {
          "value": 5.15,
          "unit": "mL/min/1.73m2"
        }
      }
    }
  ]
}