# OpenStreetMap Restaurant POI Extractor

**Use case:** 

Find restaurant POIs around a city using OpenStreetMap and export names, coordinates, addresses, websites, phones, and opening hours.

## Input

```json
{
  "location": "Vienna, Austria",
  "radiusKm": 2,
  "category": "restaurants",
  "maxItems": 100,
  "includeAllTags": false
}
```

## Output

```json
{
  "osmId": {
    "label": "OSM ID",
    "format": "text"
  },
  "osmType": {
    "label": "Type",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lon": {
    "label": "Longitude",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "openingHours": {
    "label": "Opening Hours",
    "format": "text"
  },
  "wheelchair": {
    "label": "Wheelchair",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenStreetMap POI Extractor](https://apify.com/automation-lab/openstreetmap-poi-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/openstreetmap-poi-extractor) to learn more, explore other use cases, and run it yourself.