# Doximity Family Medicine Directory Scraper

**Use case:** 

Scrape family medicine physician profiles from Doximity with name, credential, specialty, and profile URL. Export structured directory data to CSV.

## Input

```json
{
  "maxItems": 50,
  "specialty": "family-medicine",
  "includeDetails": false,
  "maxConcurrency": 5,
  "requestDelayMs": 500
}
```

## Output

```json
{
  "profileImageUrl": {
    "label": "Photo",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "firstName": {
    "label": "First Name",
    "format": "text"
  },
  "lastName": {
    "label": "Last Name",
    "format": "text"
  },
  "credential": {
    "label": "Credential",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile Url",
    "format": "link"
  },
  "specialty": {
    "label": "Specialty",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "fax": {
    "label": "Fax",
    "format": "text"
  },
  "jobTitle": {
    "label": "Job Title",
    "format": "text"
  },
  "hospitalAffiliation": {
    "label": "Hospital Affiliation",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "uuid": {
    "label": "Uuid",
    "format": "text"
  },
  "gender": {
    "label": "Gender",
    "format": "text"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "certifications": {
    "label": "Certifications",
    "format": "array"
  },
  "awards": {
    "label": "Awards",
    "format": "array"
  },
  "publications": {
    "label": "Publications",
    "format": "array"
  },
  "professionalMemberships": {
    "label": "Professional Memberships",
    "format": "array"
  },
  "profileCreatedAt": {
    "label": "Profile Created At",
    "format": "date"
  },
  "profileUpdatedAt": {
    "label": "Profile Updated At",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Doximity Physician Directory Scraper](https://apify.com/parseforge/doximity-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/doximity-scraper) to learn more, explore other use cases, and run it yourself.