← v1 API reference
Doctors
Endpoint
List doctor 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.
GET/api/v1/doctors/{cpso}/reviews
curl https://www.finddoc.ca/api/v1/doctors/85112/reviews \
-G \
-H "Authorization: Bearer fd_sandbox_public_key_2026" \
-d limit=10Response200 OK
{
"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
}Parameters
| Parameter | Type | Description |
|---|---|---|
| cpsorequired | string | CPSO number from the path segment. |
| limit | integer | Page size. Defaults to 25, maximum 100. |
| offset | integer | Zero-based offset for pagination. Defaults to 0. |
Try it
Sandbox · live requestRuns against the free sandbox key — no sign-in. Results are capped and rate-limited; pay once to unlock the full API.