# Find dentists in Mexico City, Mexico

**Use case:** 

Scrape dentists in Mexico City from Doctoralia: doctor name, specialty, clinic, phone, city, rating and profile URL. Public directory data, export to CSV.

## Input

```json
{
  "mode": "search",
  "country": "mx",
  "specialties": [
    "dentista"
  ],
  "locations": [
    "ciudad-de-mexico"
  ],
  "maxResults": 100,
  "includeProfileDetails": true,
  "includeReviews": false,
  "maxReviewsPerProfile": 20,
  "enrichContactEmails": false,
  "withPhoneOnly": false,
  "withEmailOnly": false,
  "minRating": 0,
  "deduplicateProviders": true,
  "monitorMode": false,
  "monitorStoreName": "doctoralia-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "name": {
    "label": "Name"
  },
  "specialties": {
    "label": "Specialties"
  },
  "clinicName": {
    "label": "Clinic"
  },
  "phone": {
    "label": "Phone"
  },
  "city": {
    "label": "City"
  },
  "country": {
    "label": "Country"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "# Reviews"
  },
  "startingPrice": {
    "label": "From price"
  },
  "currency": {
    "label": "Currency"
  },
  "leadScore": {
    "label": "Lead score"
  },
  "profileUrl": {
    "label": "Profile"
  }
}
```

## About this Actor

This example demonstrates how to use [Doctoralia Scraper - Doctors, Clinics & Provider Leads](https://apify.com/scrapesage/doctoralia-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/doctoralia-scraper) to learn more, explore other use cases, and run it yourself.