finddoc
Try every endpoint against sandbox data, then a one-time $5 payment unlocks live access — no account needed. Get API access
← v1 API reference

Clinics

View .md

Endpoint

Get a clinic

Fetch a single clinic by its internal id — the path segment {id} (e.g. 92a39274-7f56-4d18-a93d-ba498508249e). The detail record includes hours, accessibility, and the clinic's doctors. Unknown ids return 404 not_found.

GET/api/v1/clinics/{id}
curl https://www.finddoc.ca/api/v1/clinics/92a39274-7f56-4d18-a93d-ba498508249e \
  -H "Authorization: Bearer fd_sandbox_public_key_2026"
Response200 OK
{
  "clinic": {
    "id": 92a39274-7f56-4d18-a93d-ba498508249e,
    "name": "Riverdale Family Health",
    "address": "123 Queen St E, Toronto, ON",
    "lat": 43.659,
    "lng": -79.358,
    "phone": "+1 416-555-0142",
    "acceptingNewPatients": true,
    "website": "https://riverdalehealth.example.ca",
    "type": "family-practice",
    "hours": {
      "weekday": "9:00-17:00",
      "evening": false,
      "weekend": false
    },
    "accessibility": {
      "wheelchair": true,
      "virtualVisits": true,
      "nearTTC": true
    },
    "doctors": [
      {
        "name": "Dr. Amelie Tremblay",
        "gender": "female",
        "yearsOfPractice": 12,
        "languages": ["English", "French"],
        "specialties": ["Family Medicine"]
      }
    ]
  }
}

Parameters

ParameterTypeDescription
idrequiredstringClinic id from the path segment.

Try it

Sandbox · live request

Runs against the free sandbox key — no sign-in. Results are capped and rate-limited; pay once to unlock the full API.