# Das Örtliche Result URL Business Extractor

**Use case:** 

Paste a Das Örtliche search URL and extract structured business listings, contact details, addresses, and profile links.

## Input

```json
{
  "keywords": [
    "Zahnarzt"
  ],
  "cities": [
    "Berlin"
  ],
  "searchQueries": [
    {
      "keyword": "Steuerberater",
      "city": "München"
    }
  ],
  "startUrls": [
    {
      "url": "https://www.dasoertliche.de/?form_name=search_nat&kw=Steuerberater&ci=M%C3%BCnchen"
    }
  ],
  "maxItems": 50,
  "includeDetails": true,
  "includeWebsiteEmail": true,
  "useApifyProxy": false,
  "proxyGroups": [
    "SHADER"
  ]
}
```

## Output

```json
{
  "name": {
    "label": "Business name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "streetAddress": {
    "label": "Street",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "district": {
    "label": "District",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "sourceKeyword": {
    "label": "Keyword",
    "format": "text"
  },
  "sourceCity": {
    "label": "Source city",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Das Oertliche Scraper](https://apify.com/automation-lab/das-oertliche-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/das-oertliche-scraper) to learn more, explore other use cases, and run it yourself.