# Berlin Restaurant Leads Extraction

**Use case:** 

Extract business data for restaurants, cafes, and fast food in Berlin. Get names, addresses, phone numbers, and websites in CSV or JSON format.

## Input

```json
{
  "searchMode": "city",
  "city": "Berlin, Germany",
  "bboxSouth": 51.47,
  "bboxWest": -0.15,
  "bboxNorth": 51.53,
  "bboxEast": -0.07,
  "centerLat": 51.5074,
  "centerLng": -0.1278,
  "radiusMeters": 1000,
  "categories": [
    "restaurant",
    "cafe",
    "fast_food"
  ],
  "requireName": true,
  "requireAddress": false,
  "maxResults": 500,
  "queryConcurrency": 3
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "subcategory": {
    "label": "Subcategory",
    "format": "text"
  },
  "fullAddress": {
    "label": "Full Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "openingHours": {
    "label": "Opening Hours",
    "format": "text"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lng": {
    "label": "Longitude",
    "format": "number"
  },
  "osmUrl": {
    "label": "OSM Link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenStreetMap Scraper — Business & POI Data, No Key](https://apify.com/logiover/openstreetmap-business-poi-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/openstreetmap-business-poi-scraper) to learn more, explore other use cases, and run it yourself.