# Custom OpenStreetMap POI Lead List

**Use case:** 

Run a custom Overpass query to extract niche OpenStreetMap POIs and include raw tags for lead generation or local market analysis.

## Input

```json
{
  "location": "Vienna, Austria",
  "radiusKm": 2,
  "category": "custom",
  "customQuery": "[out:json][timeout:60];(node[\"amenity\"=\"bicycle_parking\"](48.18,16.33,48.24,16.42);way[\"amenity\"=\"bicycle_parking\"](48.18,16.33,48.24,16.42);relation[\"amenity\"=\"bicycle_parking\"](48.18,16.33,48.24,16.42););out center tags;",
  "maxItems": 500,
  "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.