# ZIP Code Finder

**Use case:** 

Find a ZIP code with postalCodes and countryCodes. Choose detailLevel, notFoundPolicy, and sortBy.

## Input

```json
{
  "target": "postalCodeLookup",
  "postalCodes": [
    "90210"
  ],
  "countryCodes": [
    "US"
  ],
  "detailLevel": "place",
  "notFoundPolicy": "keep",
  "sortBy": "place"
}
```

## Output

```json
{
  "postalCode": {
    "label": "Postal code",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "countryCode": {
    "label": "Country code",
    "format": "string"
  },
  "places": {
    "label": "Places",
    "format": "array"
  },
  "found": {
    "label": "Match found",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [ZIP Code Lookup](https://apify.com/maximedupre/zip-code-lookup) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/zip-code-lookup) to learn more, explore other use cases, and run it yourself.