# Export Car Dealer Details by URL - DealerRater

**Use case:** 

Export full dealer details from any DealerRater profile URL with Dealer / Name, City, Phone, Website, Rating, Reviews and Staff. JSON, CSV or Excel.

## Input

```json
{
  "states": [
    "Texas"
  ],
  "makes": [
    "Toyota"
  ],
  "searchUrls": [
    "https://www.dealerrater.com/dealer/Toyota-of-Dallas-review-12345/"
  ],
  "maxReviewsPerDealer": 10,
  "enrichEmails": false,
  "maxItems": 100,
  "maxPagesPerSearch": 10,
  "monitorMode": false,
  "monitorStoreName": "dealerrater-monitor",
  "maxConcurrency": 8,
  "maxAttemptsPerPage": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "name": {
    "label": "Dealer / Name",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "makes": {
    "label": "Makes",
    "format": "array"
  },
  "salespeopleCount": {
    "label": "Staff",
    "format": "number"
  },
  "leadScore": {
    "label": "Lead Score",
    "format": "number"
  },
  "url": {
    "label": "DealerRater URL",
    "format": "link"
  },
  "dealerId": {
    "label": "Dealer ID",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "text"
  }
}
```

## About this Actor

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