FindDoc
Sign in with Google — first sign-in creates your free FindDoc account. Get an API key

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

Live request
Sign in with Google — first sign-in creates your free FindDoc account to run live requests against your account's rate limit.