# Build a Doctor Contact List by Specialty & City

**Use case:** 

Generate a CRM-ready list of doctors by specialty and city — name, NPI, ratings, address, and contact data for every provider, as CSV or JSON.

## Input

```json
{
  "specialty": "Cardiologist",
  "location": "Houston, TX",
  "maxPages": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Doctor Name",
    "format": "string"
  },
  "npi": {
    "label": "NPI",
    "format": "string"
  },
  "doctorSpecialty": {
    "label": "Specialty",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "integer"
  },
  "acceptsNewPatients": {
    "label": "Accepts New Patients",
    "format": "boolean"
  },
  "telehealthAvailable": {
    "label": "Telehealth",
    "format": "boolean"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Healthgrades Scraper — Doctor NPI, Ratings & Contact Data](https://apify.com/jaybird/healthgrades-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jaybird/healthgrades-scraper) to learn more, explore other use cases, and run it yourself.