# OSM Pharmacy Bounding Box Extractor

**Use case:** 

Use a precise OpenStreetMap bounding box to export pharmacy POIs with coordinates, address data, websites, phones, and opening hours.

## Input

```json
{
  "location": "Vienna, Austria",
  "radiusKm": 2,
  "boundingBox": "48.18,16.33,48.24,16.42",
  "category": "pharmacies",
  "maxItems": 200,
  "includeAllTags": true
}
```

## 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.