curl --request GET \
--url https://api.spikecare.com/public/v1/patients{
"patients": [
{
"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>"
}
],
"$schema": "<string>"
}List patients associated with your EMR. Optionally filter by clinic_id. Use pagination (_start, _limit) for large result sets.
curl --request GET \
--url https://api.spikecare.com/public/v1/patients{
"patients": [
{
"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>"
}
],
"$schema": "<string>"
}0-based index of the first item to return (offset). Use with _limit for paging.
x >= 0Maximum number of items to return per request (1–100).
1 <= x <= 100Name of the field to sort by (e.g. id, name, created_at). Omit for default sort.
Sort direction: asc or desc.
asc, desc Optional. Limit results to patients assigned to this clinic ID. Omit or 0 for all clinics.