# WebMD Cardiologists California Scraper

**Use case:** 

Scrape cardiologists in California from the WebMD provider directory with name, specialty, and photo. Export structured provider data to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "specialty": "cardiovascular-disease",
  "state": "california",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxConcurrency": 5
}
```

## Output

```json
{
  "photoUrl": {
    "label": "Photo",
    "format": "image"
  },
  "fullName": {
    "label": "Full Name",
    "format": "text"
  },
  "firstName": {
    "label": "First Name",
    "format": "text"
  },
  "middleName": {
    "label": "Middle Name",
    "format": "text"
  },
  "lastName": {
    "label": "Last Name",
    "format": "text"
  },
  "suffix": {
    "label": "Suffix",
    "format": "text"
  },
  "degreeAbbr": {
    "label": "Degree Abbr",
    "format": "text"
  },
  "specialty": {
    "label": "Specialty",
    "format": "text"
  },
  "specialtyId": {
    "label": "Specialty Id",
    "format": "text"
  },
  "gender": {
    "label": "Gender",
    "format": "text"
  },
  "graduationYear": {
    "label": "Graduation Year",
    "format": "number"
  },
  "npi": {
    "label": "Npi",
    "format": "text"
  },
  "providerId": {
    "label": "Provider Id",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile Url",
    "format": "link"
  },
  "appointmentUrl": {
    "label": "Appointment Url",
    "format": "link"
  },
  "profileType": {
    "label": "Profile Type",
    "format": "text"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "ratingOverall": {
    "label": "Rating Overall",
    "format": "number"
  },
  "ratingBedside": {
    "label": "Rating Bedside",
    "format": "number"
  },
  "ratingExplains": {
    "label": "Rating Explains",
    "format": "number"
  },
  "ratingTime": {
    "label": "Rating Time",
    "format": "number"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipCode": {
    "label": "Zip Code",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "acceptsMedicare": {
    "label": "Accepts Medicare",
    "format": "boolean"
  },
  "acceptsMedicaid": {
    "label": "Accepts Medicaid",
    "format": "boolean"
  },
  "acceptingNewPatients": {
    "label": "Accepting New Patients",
    "format": "boolean"
  },
  "medicalGroup": {
    "label": "Medical Group",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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