# Search (address -> coords) OpenStreetMap Nominatim Geocoder

**Use case:** 

Extract OpenStreetMap Nominatim Geocoder data filtered by Search (address -> coords). Export structured results ready for analysis, lead generation, or

## Input

```json
{
  "maxItems": 10,
  "mode": "search",
  "queries": [
    "Eiffel Tower",
    "Times Square NYC",
    "Colosseum Rome",
    "Tokyo Tower",
    "Sydney Opera House",
    "10 Downing Street London",
    "Brandenburg Gate Berlin",
    "Statue of Liberty",
    "Taj Mahal",
    "Christ the Redeemer Rio"
  ],
  "coordinates": [
    "48.8584,2.2945",
    "40.7580,-73.9855",
    "41.8902,12.4922"
  ],
  "osmIds": [
    "R146656",
    "R62422",
    "R1221769"
  ],
  "limitPerQuery": 10,
  "language": "en"
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "displayName": {
    "label": "Display Name",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "houseNumber": {
    "label": "House #",
    "format": "text"
  },
  "street": {
    "label": "Street",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "countryCode": {
    "label": "Country Code",
    "format": "text"
  },
  "postcode": {
    "label": "Postcode",
    "format": "text"
  },
  "importance": {
    "label": "Importance",
    "format": "number"
  },
  "osmType": {
    "label": "OSM Type",
    "format": "text"
  },
  "osmId": {
    "label": "OSM ID",
    "format": "text"
  },
  "placeId": {
    "label": "Place ID",
    "format": "text"
  },
  "boundingBox": {
    "label": "Bounding Box",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenStreetMap Nominatim Geocoder](https://apify.com/parseforge/nominatim-osm-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/nominatim-osm-scraper) to learn more, explore other use cases, and run it yourself.