# Prague Attractions Bbox Extractor

**Use case:** 

Scrape Prague tourist attractions and viewpoints from OpenStreetMap by bounding box for GIS exports and trip-planning data.

## Input

```json
{
  "areaQuery": "Paris, France",
  "bbox": "50.0540,14.3550,50.1150,14.4930",
  "categories": [
    "attraction",
    "viewpoint",
    "museum"
  ],
  "maxItems": 150,
  "includeWaysAndRelations": true,
  "includeRawTags": true,
  "requestDelayMs": 1100,
  "overpassEndpoint": "https://maps.mail.ru/osm/tools/overpass/api/interpreter",
  "fallbackOverpassEndpoints": [
    "https://overpass-api.de/api/interpreter",
    "https://overpass.kumi.systems/api/interpreter"
  ]
}
```

## Output

```json
{
  "osmId": {
    "label": "OSM ID"
  },
  "osmType": {
    "label": "OSM type"
  },
  "name": {
    "label": "Name"
  },
  "tourismCategory": {
    "label": "Tourism category"
  },
  "latitude": {
    "label": "Latitude"
  },
  "longitude": {
    "label": "Longitude"
  },
  "address": {
    "label": "Address"
  },
  "website": {
    "label": "Website"
  },
  "phone": {
    "label": "Phone"
  },
  "email": {
    "label": "Email"
  },
  "wikidata": {
    "label": "Wikidata"
  },
  "wikipedia": {
    "label": "Wikipedia"
  },
  "openingHours": {
    "label": "Opening hours"
  },
  "fee": {
    "label": "Fee"
  },
  "wheelchair": {
    "label": "Wheelchair"
  },
  "sourceUrl": {
    "label": "OSM source"
  },
  "attribution": {
    "label": "Attribution"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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