← v1 API reference
Clinics
Endpoint
List clinics
Return clinics filtered by acceptance, languages, accessibility, and location. Results are sorted by distance when lat and lng are supplied, otherwise by name.
GET/api/v1/clinics
curl https://finddoc-ten.vercel.app/api/v1/clinics \
-G \
-H "Authorization: Bearer fd_test_xxxx…" \
-d accepting=true \
-d languages=French \
-d limit=10Response200 OK
{
"clinics": [
{
"id": 92a39274-7f56-4d18-a93d-ba498508249e,
"name": "Riverdale Family Health",
"address": "123 Queen St E, Toronto, ON",
"accepting": true,
"languages": ["English", "French"],
"specialties": ["Family Medicine"],
"lat": 43.659,
"lng": -79.358
}
],
"total": 42,
"count": 1
}Parameters
| Parameter | Type | Description |
|---|---|---|
| specialties | string | Comma-separated specialties to match, e.g. Family Medicine,Pediatrics. |
| accepting | boolean | When true, only return rows currently accepting new patients. |
| gender | string | One of "male", "female", or "non-binary". |
| languages | string | Comma-separated list of languages spoken, e.g. English,French. |
| minYears | integer | Minimum years of practice for the doctor. |
| maxYears | integer | Maximum years of practice for the doctor. |
| evening | boolean | Only include clinics with evening hours (after 5 PM). |
| weekend | boolean | Only include clinics open on Saturday or Sunday. |
| wheelchair | boolean | Only include wheelchair-accessible clinics. |
| virtualVisits | boolean | Only include clinics offering virtual visits. |
| nearTTC | boolean | Only include clinics near a TTC subway station. |
| lat | number | Latitude for distance sort. Must be paired with lng. |
| lng | number | Longitude for distance sort. Must be paired with lat. |
| limit | integer | Page size. Defaults to 25, maximum 100. |
| offset | integer | Zero-based offset for pagination. Defaults to 0. |
Try it
Live requestSign in with Google — first sign-in creates your free FindDoc account to run live requests against your account's rate limit.