# RateMDs Dentists Scraper

**Use case:** 

Scrape dentist listings and reviews from RateMDs with doctor name, specialty, rating, location, phone, and profile URL. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "startUrl": "https://www.ratemds.com/best-doctors/?specialty=addiction-medicine",
  "specialty": "dentist",
  "doctorName": "John Smith",
  "verified": false,
  "acceptingNewPatients": false,
  "onlineScheduling": false,
  "virtualVisits": false
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "specialty": {
    "label": "Specialty",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "staffRating": {
    "label": "Staff Rating",
    "format": "number"
  },
  "punctualityRating": {
    "label": "Punctuality Rating",
    "format": "number"
  },
  "helpfulnessRating": {
    "label": "Helpfulness Rating",
    "format": "number"
  },
  "knowledgeRating": {
    "label": "Knowledge Rating",
    "format": "number"
  },
  "acceptsVirtualVisits": {
    "label": "Accepts Virtual Visits",
    "format": "boolean"
  },
  "clinicName": {
    "label": "Clinic Name",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "otherSpecialties": {
    "label": "Other Specialties",
    "format": "array"
  },
  "areasOfExpertise": {
    "label": "Areas of Expertise",
    "format": "array"
  },
  "biography": {
    "label": "Biography",
    "format": "text"
  },
  "recentReviewComment": {
    "label": "Recent Review",
    "format": "text"
  },
  "publicationsAndResearch": {
    "label": "Publications & Research",
    "format": "text"
  },
  "acceptedInsurances": {
    "label": "Accepted Insurances",
    "format": "array"
  },
  "languages": {
    "label": "Languages",
    "format": "array"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "awardsAndRecognitions": {
    "label": "Awards & Recognitions",
    "format": "array"
  },
  "clinicLocations": {
    "label": "Clinic Locations",
    "format": "array"
  },
  "facilityAffiliations": {
    "label": "Facility Affiliations",
    "format": "array"
  },
  "reviews": {
    "label": "Reviews",
    "format": "array"
  },
  "url": {
    "label": "Doctor URL",
    "format": "link"
  },
  "clinicUrl": {
    "label": "Clinic URL",
    "format": "link"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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