curl --request GET \
--url https://api.spikecare.com/public/v1/patients/{id}{
"clinic_id": 2,
"date_of_birth": "2023-12-25",
"id": 2,
"insurance_provider_id": 2,
"name": "<string>",
"$schema": "<string>",
"address": "<string>",
"email": "jsmith@example.com",
"group_number": "<string>",
"in_network_override": true,
"phone": "<string>",
"policy_id": "<string>"
}Fetch a single patient by internal ID. Use this to sync or display full patient details in your EMR.
curl --request GET \
--url https://api.spikecare.com/public/v1/patients/{id}{
"clinic_id": 2,
"date_of_birth": "2023-12-25",
"id": 2,
"insurance_provider_id": 2,
"name": "<string>",
"$schema": "<string>",
"address": "<string>",
"email": "jsmith@example.com",
"group_number": "<string>",
"in_network_override": true,
"phone": "<string>",
"policy_id": "<string>"
}Patient ID
OK
ID of the clinic this patient is assigned to.
x >= 1Date of birth in YYYY-MM-DD format.
Unique patient identifier assigned by the API.
x >= 1ID of the patient’s primary insurance provider (payer) from the insurance-providers reference.
x >= 1Patient’s full name as in your EMR.
1 - 255A URL to the JSON Schema for this object.
"https://api.spikecare.com/public/v1/schemas/Patient.json"
Patient’s street address (optional).
500Patient’s email address (optional).
255Insurance group number (optional).
255Override default network status: true = in-network, false = out-of-network. Omit to use clinic default.
Patient’s contact phone number in E.164 format (optional).
30Insurance policy ID / member ID (optional).
255