# Healthgrades cardiologist profile scraper

**Use case:** 

Extract New York cardiologists, ratings, NPI, practice contacts, education, and affiliations from public Healthgrades profiles.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.healthgrades.com/cardiology-directory/ny-new-york/new-york"
    }
  ],
  "specialty": "Cardiology",
  "city": "New York",
  "stateCode": "NY",
  "stateName": "New York",
  "maxItems": 20,
  "includeProfileDetails": true,
  "maxPages": 2,
  "maxConcurrency": 3
}
```

## Output

```json
{
  "name": {
    "label": "Doctor name",
    "format": "string"
  },
  "specialty": {
    "label": "Specialty",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating count",
    "format": "integer"
  },
  "practiceName": {
    "label": "Practice",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "acceptingNewPatients": {
    "label": "Accepting new patients",
    "format": "boolean"
  },
  "npi": {
    "label": "NPI",
    "format": "string"
  },
  "profileUrl": {
    "label": "Healthgrades profile",
    "format": "string"
  },
  "profileComplete": {
    "label": "Profile details fetched",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Healthgrades Doctors & Profiles Scraper](https://apify.com/automation-lab/healthgrades-doctors-profiles-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/healthgrades-doctors-profiles-scraper) to learn more, explore other use cases, and run it yourself.