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

Get a doctor

Fetch a single doctor by CPSO number — the path segment {cpso} (e.g. 82621). The detail record adds bookingMethod, rating, and the most recent reviews on top of the list shape. Unknown CPSO numbers return 404 not_found.

GET/api/v1/doctors/85112
curl https://www.finddoc.ca/api/v1/doctors/90123 \
  -H "Authorization: Bearer fd_sandbox_public_key_2026"
Response200 OK
{
  "doctor": {
    "id": "doctor_5h7m2k",
    "cpsoNumber": "90123",
    "name": "Dr. Amelie Tremblay",
    "gender": "female",
    "yearsOfPractice": 12,
    "languages": ["English", "French"],
    "specialties": ["Family Medicine"],
    "referralRequired": false,
    "bookingMethod": {
      "phone": "+1 416-555-0142",
      "online": "https://book.example.ca/tremblay",
      "referralOnly": false
    },
    "rating": {
      "positive": 48,
      "negative": 6,
      "reviewCount": 54
    },
    "reviews": [
      {
        "author": "Jordan P.",
        "rating": 5,
        "text": "Thorough and never rushed.",
        "date": "2026-04-18"
      }
    ],
    "clinic": {
      "id": 92a39274-7f56-4d18-a93d-ba498508249e,
      "name": "Riverdale Family Health",
      "address": "123 Queen St E, Toronto, ON",
      "lat": 43.659,
      "lng": -79.358,
      "phone": "+1 416-555-0142",
      "acceptingNewPatients": true
    },
    "syncedAt": "2026-05-01T09:30:00Z",
    "expiredAt": null,
    "dataFreshness": "fresh"
  }
}

Parameters

ParameterTypeDescription
cpsorequiredstringCPSO number from the path segment.

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.