# Miodottore.it Scraper — Italian Doctor Reviews & Directory Data (`studio-amba/miodottore-it-scraper`) Actor

Scrape doctor and healthcare provider listings from miodottore.it, Italy's largest doctor-review directory. Get name, specialty, address, phone, rating and review snippets by specialty and city. No login required.

- **URL**: https://apify.com/studio-amba/miodottore-it-scraper.md
- **Developed by:** [Studio Amba](https://apify.com/studio-amba) (community)
- **Categories:** Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 result scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Miodottore.it Scraper (miodottore.it)

Scrape public doctor and healthcare-provider listings from miodottore.it,
Italy's largest doctor-review and appointment-booking directory (part of
the Docplanner group, the same platform family as jameda.de and doctoralia).
Search by medical specialty and city and get structured provider profiles:
name, specialty, practice address, coordinates, phone, aggregate patient
rating, review count, and individual review snippets.

### Why use this actor?

Health-tech companies, medical marketing agencies, insurance brokers,
patient-acquisition tools, and market-research teams all need up-to-date
lists of practicing doctors by specialty and city, along with a read on how
well-reviewed each one is. Miodottore.it is the dominant doctor-review
platform in Italy — this actor turns its search results into a clean,
structured dataset instead of manual copy-pasting.

**Compliance note:** every field this actor returns is public directory
data that the doctor or clinic chose to publish on their miodottore.it
profile — visible to any anonymous visitor and indexed by Google (the pages
carry schema.org `Physician`/`MedicalOrganization` markup specifically for
search-engine indexing). This actor does not collect patient data, private
messages, or any information behind a login — only reviews and profile
data that are already public on the page.

### Input

| Field | Type | Required | Description |
|-------|------|----------|--------------|
| `specialty` | String | No | Medical specialty in Italian, as used in the miodottore.it URL, e.g. `dentista`, `cardiologo`, `dermatologo`, `ginecologo`, `ortopedico`, `pediatra`, `psicologo`, `urologo`, `oculista`. Default: `dentista` |
| `city` | String | No | Italian city name, e.g. `Milano`, `Roma`, `Napoli`, `Torino`, `Bologna`. Default: `Milano` |
| `maxResults` | Integer | No | Maximum number of healthcare providers to return. Hard-capped at 2000 per run. Default: `50` |
| `fetchDetails` | Boolean | No | When `true` (default), visits each provider's profile page for phone number, postal code, province, bio and review snippets — one extra request per result. Set `false` for a faster, listing-only run |
| `proxyConfiguration` | Object | No | Proxy settings. miodottore.it has no anti-bot wall on listing or profile pages, so the default automatic Apify proxy works |

If you leave the input empty (`{}`), the actor runs with the defaults above
and still returns real data — useful for a quick test run.

### Output

Each result is one healthcare provider:

| Field | Type | Example |
|-------|------|---------|
| `name` | String | `"Alessandro Neglia"` |
| `honorific` | String | `"Dott."` |
| `specialty` | String | `"dentista"` |
| `specialtySlug` | String | `"dentista"` |
| `providerType` | String | `"INDIVIDUAL_PRACTITIONER"` or `"ORGANIZATION"` |
| `address` | String | `"Via Giorgio Washington 71"` |
| `city` | String | `"Milano"` |
| `postalCode` | String | `"20146"` |
| `province` | String | `"MI"` |
| `country` | String | `"IT"` |
| `latitude` / `longitude` | Number | `45.4583015` / `9.155077` |
| `phone` | String | `"02 8736 1467"` |
| `bio` | String | Free-text "Su di me" profile description |
| `onlineBookingAvailable` | Boolean | `false` |
| `openingHours` | Array | Weekly opening hours, when the profile publishes them |
| `rating` | Number | `5` |
| `ratingScale` | String | `"1-5"` (worst-best; 5-star scale) |
| `reviewCount` | Integer | `279` |
| `reviewSnippets` | Array | `[{ "text": "...", "ratingValue": 5, "date": "2026-07-22T16:02:42+02:00" }, ...]` |
| `url` | String | Full miodottore.it profile URL |
| `scrapedAt` | String | ISO 8601 timestamp |

Not every field is present on every profile — `phone`, `postalCode`,
`province`, `bio` and `reviewSnippets` only populate when `fetchDetails` is
on, `openingHours` only when the source publishes it, and providers with
zero reviews naturally have no `rating`/`ratingScale`.

### Example output

```json
{
    "name": "Alessandro Neglia",
    "honorific": "Dott.",
    "specialty": "dentista",
    "specialtySlug": "dentista",
    "providerType": "INDIVIDUAL_PRACTITIONER",
    "address": "Via Giorgio Washington 71",
    "city": "Milano",
    "postalCode": "20146",
    "province": "MI",
    "country": "IT",
    "latitude": 45.4583015,
    "longitude": 9.155077,
    "onlineBookingAvailable": false,
    "rating": 5,
    "ratingScale": "1-5",
    "reviewCount": 279,
    "phone": "02 8736 1467",
    "bio": "Sono eseguite tutte le terapie: igiene, sbiancamento professionale...",
    "reviewSnippets": [
        {
            "text": "Vado dal Dott. Neglia ormai da 8 anni e non lo cambierei per nulla al mondo.",
            "ratingValue": 5,
            "date": "2026-07-22T16:02:42+02:00"
        }
    ],
    "url": "https://www.miodottore.it/profilo/alessandro-neglia",
    "scrapedAt": "2026-08-13T09:07:10.539Z"
}
```

### How to scrape Miodottore data

1. Open the actor and, under **Input**, set `specialty` (Italian, e.g.
   `dentista`, `cardiologo`, `dermatologo`, `ginecologo`, `ortopedico`,
   `pediatra`, `psicologo`, `urologo`) and `city` (e.g. `Milano`, `Roma`,
   `Napoli`, `Torino`, `Bologna`).
2. Set `maxResults` to the number of providers you want. Leave
   `fetchDetails` on (default) for phone numbers, postal code, province and
   review snippets, or turn it off for a faster listing-only run.
3. Click **Start**. The actor loads miodottore's search listing for your
   specialty + city (server-rendered HTML, paginated automatically until
   `maxResults` or the search's results are exhausted), reads each doctor
   card's rating, review count, address and coordinates directly, then —
   if `fetchDetails` is on — visits each provider's profile page to add
   phone, postal code, province, "Su di me" bio and individual review text.
4. Download the results as JSON, CSV, or Excel from the **Dataset** tab,
   or pull them via the Apify API into your CRM, spreadsheet, or lead
   pipeline.

For repeat use, schedule the actor to run daily or weekly and diff the
output against your last run to catch new providers, rating changes, or
new reviews.

### Cost estimate

This actor makes 1 request per listing page (roughly 20-30 providers per
page) plus, when `fetchDetails` is on, 1 profile-page request per
provider — so roughly 2 requests per result end to end. At standard Apify
Pay-Per-Result pricing, that's a small, predictable cost per result — see
the actor's **Pricing** tab on the Apify Store for the current per-result
rate. Usage cost only settles once a run reports **SUCCEEDED** — if you
read the dataset mid-run or after a failed run, the final charge may not
match what you see yet.

### Limitations

- Not every provider publishes a phone number, bio, or opening hours on
  their profile — some practices keep their listing minimal.
- miodottore's rating is a live **5-star scale** (worst = 1, best = 5),
  taken directly from the site's own schema.org markup — verify `ratingScale`
  on any record rather than assuming a fixed scale.
- Specialty and city must roughly match miodottore's own Italian URL
  vocabulary (the site's native routing, not free-text search). Most
  Italian specialty names already match their URL slug directly (e.g.
  `dentista`, `cardiologo`); a small alias table covers the exceptions.
- `reviewSnippets` reflects the reviews embedded in the profile page's own
  structured data, not the full review history for high-volume profiles.
- Block detection is content-based (missing result cards on a 200 page),
  not status-code-based — miodottore returns clean 200s with no observed
  anti-bot wall on listing or profile routes.
- Data is scraped from the public website and may change without notice.
- Respect miodottore's terms of service and use this data responsibly —
  this actor only reads public directory pages, never registration,
  messaging, or account-management endpoints.

### Related Scrapers

- [Jameda Scraper](https://apify.com/studio-amba/jameda-scraper) — same booking-directory model, Germany
- [Doctolib FR Scraper](https://apify.com/studio-amba/doctolib-fr-scraper) — same booking-directory model, France
- [Doctoralia ES Scraper](https://apify.com/studio-amba/doctoralia-es-scraper) — same Docplanner platform family, Spain
- [Registro Imprese Scraper](https://apify.com/studio-amba/registro-imprese-scraper) — Italian company registry data
- [Gazzetta Ufficiale Scraper](https://apify.com/studio-amba/gazzetta-ufficiale-scraper) — Italian official gazette data

### Need this data on a schedule, or a custom version?

We run this scraper as a managed service for businesses: scheduled runs,
deduplication, delta detection, and delivery to your inbox, Google Sheets,
or API — maintenance included. We can also build a custom version with your
exact fields and filters, or combine multiple sources into one feed.

See [studioamba.dev/services](https://studioamba.dev/services/) or email
<hello@studioamba.dev> for a free data sample.
We maintain 300+ European web scrapers and answer within one business day.

# Actor input Schema

## `specialty` (type: `string`):

Medical specialty in Italian, as used in the miodottore.it URL, e.g. 'dentista', 'cardiologo', 'dermatologo', 'ginecologo', 'ortopedico', 'pediatra', 'psicologo', 'urologo', 'oculista'.

## `city` (type: `string`):

Italian city name, e.g. 'Milano', 'Roma', 'Napoli', 'Torino', 'Bologna'.

## `maxResults` (type: `integer`):

Maximum number of healthcare providers to return. Hard-capped at 2000 per run to keep run duration predictable.

## `fetchDetails` (type: `boolean`):

When ON (default), fetches each provider's profile page to add phone number, postal code, province, bio and individual review snippets — one extra request per result. When OFF, only listing-page fields are returned (faster: name, specialty, city, rating, review count, coordinates).

## `proxyConfiguration` (type: `object`):

Proxy settings. miodottore.it has no Cloudflare/DataDome/Akamai anti-bot on listing or profile routes (verified live) — the default automatic Apify proxy works without a residential group.

## Actor input object example

```json
{
  "specialty": "dentista",
  "city": "Milano",
  "maxResults": 20,
  "fetchDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "specialty": "dentista",
    "city": "Milano",
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/miodottore-it-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "specialty": "dentista",
    "city": "Milano",
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/miodottore-it-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "specialty": "dentista",
  "city": "Milano",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call studio-amba/miodottore-it-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,studio-amba/miodottore-it-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/iYWQqDzuL3y23qbNf/builds/VT7Rg6UfktcR0XWMi/openapi.json
