Skip to main content
List patients
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>"
}

Query Parameters

_start
integer<int64>
default:0

0-based index of the first item to return (offset). Use with _limit for paging.

Required range: x >= 0
_limit
integer<int64>
default:100

Maximum number of items to return per request (1–100).

Required range: 1 <= x <= 100
_sort
string

Name of the field to sort by (e.g. id, name, created_at). Omit for default sort.

_order
enum<string>
default:asc

Sort direction: asc or desc.

Available options:
asc,
desc
clinic_id
integer<int64>

Optional. Limit results to patients assigned to this clinic ID. Omit or 0 for all clinics.

Response

OK

patients
object[] | null
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://api.spikecare.com/public/v1/schemas/PatientsListResponseBody.json"