FindDoc
Sign in with Google — first sign-in creates your free FindDoc account. Get an API key

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://finddoc-ten.vercel.app/api/v1/clinics/92a39274-7f56-4d18-a93d-ba498508249e \
  -H "Authorization: Bearer fd_test_xxxx…"
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

Live request
Sign in with Google — first sign-in creates your free FindDoc account to run live requests against your account's rate limit.