# US Landmark Address Normalizer Tool

**Use case:** 

Normalize and parse well-known US landmark addresses into structured street, city, state, postal code, and country fields. Export to JSON or CSV.

## Input

```json
{
  "addresses": [
    "1600 pennsylvania ave nw washington dc 20500",
    "350 fifth avenue new york ny",
    "1 infinite loop cupertino ca 95014"
  ]
}
```

## Output

```json
{
  "originalAddress": {
    "label": "Original Address",
    "format": "text"
  },
  "street": {
    "label": "Street",
    "format": "text"
  },
  "district": {
    "label": "District",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal Code",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "normalizedAddress": {
    "label": "Normalized Address",
    "format": "text"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Address Normalizer](https://apify.com/parseforge/address-normalizer) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/address-normalizer) to learn more, explore other use cases, and run it yourself.