# Get a clinic

`GET https://www.finddoc.ca/api/v1/clinics/{id}`

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`.

## Parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| id | string | Yes | Clinic id from the path segment. |

## Example request

```bash
curl https://www.finddoc.ca/api/v1/clinics/92a39274-7f56-4d18-a93d-ba498508249e \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Example response (200 OK)

```json
{
  "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"]
      }
    ]
  }
}
```

---

## Get full access

Direct v1 API access is unlocked by a one-time payment — One Time Payment (Early Access) (5 CAD). Complete checkout at https://www.finddoc.ca/developers/checkout.