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

Doctor summary

Directory-wide totals: the doctor count, how many are accepting new patients, a per-specialty breakdown, and a dataFreshness coverage rollup. Takes no query parameters.

GET/api/v1/doctors/summary
curl https://www.finddoc.ca/api/v1/doctors/summary \
  -H "Authorization: Bearer fd_sandbox_public_key_2026"
Response200 OK
{
  "totalDoctors": 4821,
  "acceptingNewPatients": 1163,
  "bySpecialty": [
    {
      "specialty": "Family Medicine",
      "count": 2104
    }
  ],
  "dataFreshness": {
    "fresh": 4200,
    "stale": 540,
    "unknown": 81,
    "coveragePct": 98.3
  }
}

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.

This endpoint takes no parameters.