# List doctor reviews

`GET https://www.finddoc.ca/api/v1/doctors/{cpso}/reviews`

Paginated reviews for a doctor, addressed by CPSO number in the path (e.g. `85112`), newest first. Unknown CPSO numbers return `404 not_found`.

## Parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| cpso | string | Yes | CPSO number from the path segment. |
| limit | integer | No | Page size. Defaults to 25, maximum 100. |
| offset | integer | No | Zero-based offset for pagination. Defaults to 0. |

## Example request

```bash
curl https://www.finddoc.ca/api/v1/doctors/85112/reviews \
  -G \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d limit=10
```

## Example response (200 OK)

```json
{
  "doctorCpso": "90123",
  "reviews": [
    {
      "author": "Jordan P.",
      "rating": 5,
      "text": "Thorough and never rushed.",
      "date": "2026-04-18",
      "sourceUrl": "https://www.ratemds.com/doctor/dr-amelie-tremblay"
    }
  ],
  "total": 18,
  "count": 1
}
```

---

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