Skip to main content
List clinics
curl --request GET \
  --url https://api.spikecare.com/public/v1/clinics
{
  "clinics": [
    {
      "city": "<string>",
      "id": 2,
      "name": "<string>",
      "npi": 5499999999,
      "phone": "<string>",
      "state": "<string>",
      "street": "<string>",
      "tax_id": "<string>",
      "zip_code": "<string>",
      "$schema": "<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

Response

OK

clinics
object[] | null
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

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