← 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://finddoc-ten.vercel.app/api/v1/doctors/85112/reviews \
-G \
-H "Authorization: Bearer fd_test_xxxx…" \
-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
Live requestSign in with Google — first sign-in creates your free FindDoc account to run live requests against your account's rate limit.