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

Metadata

View .md

Endpoint

List specialties

Every specialty in the directory with its doctor count, sorted by count descending then name. Useful for building filter menus. Takes no query parameters.

GET/api/v1/metadata/specialties
curl https://www.finddoc.ca/api/v1/metadata/specialties \
  -H "Authorization: Bearer fd_sandbox_public_key_2026"
Response200 OK
{
  "specialties": [
    {
      "name": "Family Medicine",
      "doctorCount": 2104
    },
    {
      "name": "Pediatrics",
      "doctorCount": 389
    }
  ],
  "count": 2
}

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.