finddoc
Try every endpoint against sandbox data, then a one-time $5 payment unlocks live access — no account needed. Get API access
← v1 API reference

Doctors

View .md

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=10
Response200 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

ParameterTypeDescription
cpsorequiredstringCPSO number from the path segment.
limitintegerPage size. Defaults to 25, maximum 100.
offsetintegerZero-based offset for pagination. Defaults to 0.

Try it

Sandbox · live request

Runs against the free sandbox key — no sign-in. Results are capped and rate-limited; pay once to unlock the full API.