# Build an Enriched Nurse Practitioner Dataset from Doximity

**Use case:** 

Run a deeper Doximity directory scrape for nurse practitioners and open public profiles to enrich specialty, address, education, and summary fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.doximity.com/directory/nurse-practitioners"
    }
  ],
  "clinicianType": "nurse-practitioners",
  "specialtyPath": "/directory/md/specialty/cardiology",
  "maxItems": 250,
  "enrichProfiles": true,
  "requestDelayMs": 500
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "credentials": {
    "label": "Credentials",
    "format": "text"
  },
  "clinicianType": {
    "label": "Clinician type",
    "format": "text"
  },
  "specialty": {
    "label": "Specialty",
    "format": "text"
  },
  "subspecialty": {
    "label": "Subspecialty",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "text"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "text"
  },
  "organization": {
    "label": "Organization",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "fax": {
    "label": "Fax",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "education": {
    "label": "Education",
    "format": "text"
  },
  "profileImageUrl": {
    "label": "Profile image",
    "format": "link"
  },
  "sourceListingUrl": {
    "label": "Source listing",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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