# Scrape Treatment Centers in Miami - Psychology Today

**Use case:** 

Pull treatment centers in Miami, FL from Psychology Today with name, type, phone, city, state, ZIP and specialties. Export to JSON, CSV or Excel.

## Input

```json
{
  "locations": [
    "Miami, FL"
  ],
  "providerType": "treatment-center",
  "maxResults": 100,
  "maxResultsPerCity": 60,
  "maxCitiesPerState": 4,
  "includeProfileDetails": true,
  "acceptingNewClientsOnly": false,
  "acceptsInsuranceOnly": false,
  "offersTelehealthOnly": false,
  "minYearsInPractice": 0,
  "withPhoneOnly": false,
  "deduplicateProviders": true,
  "monitorMode": false,
  "monitorStoreName": "psychology-today-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "providerType": {
    "label": "Type",
    "format": "text"
  },
  "credentials": {
    "label": "Credentials",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "postalCode": {
    "label": "ZIP",
    "format": "text"
  },
  "acceptingNewClients": {
    "label": "Accepting",
    "format": "boolean"
  },
  "acceptsInsurance": {
    "label": "Insurance",
    "format": "boolean"
  },
  "offersTelehealth": {
    "label": "Telehealth",
    "format": "boolean"
  },
  "feeIndividual": {
    "label": "Fee",
    "format": "number"
  },
  "yearsInPractice": {
    "label": "Years",
    "format": "number"
  },
  "licenseNumber": {
    "label": "License #",
    "format": "text"
  },
  "specialties": {
    "label": "Specialties",
    "format": "array"
  },
  "typesOfTherapy": {
    "label": "Modalities",
    "format": "array"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Psychology Today Scraper - Therapist & Mental Health Leads](https://apify.com/scrapesage/psychology-today-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/psychology-today-scraper) to learn more, explore other use cases, and run it yourself.