# Address → Coordinates US Census Geocoder

**Use case:** 

Extract US Census Geocoder data filtered by Address → Coordinates. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "mode": "address",
  "addresses": [
    "1600 Pennsylvania Ave NW, Washington, DC 20500",
    "350 5th Ave, New York, NY 10118",
    "1 Apple Park Way, Cupertino, CA 95014"
  ],
  "coordinates": [
    {
      "lat": 38.8977,
      "lng": -77.0365
    },
    {
      "lat": 40.7484,
      "lng": -73.9857
    }
  ],
  "returnGeographies": false
}
```

## Output

```json
{
  "inputQuery": {
    "label": "Input",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "matchedAddress": {
    "label": "Matched Address",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "tigerLineId": {
    "label": "Tiger Line ID",
    "format": "text"
  },
  "side": {
    "label": "Side",
    "format": "text"
  },
  "fromAddress": {
    "label": "From #",
    "format": "text"
  },
  "toAddress": {
    "label": "To #",
    "format": "text"
  },
  "streetName": {
    "label": "Street",
    "format": "text"
  },
  "suffixType": {
    "label": "Suffix",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "ZIP",
    "format": "text"
  },
  "countyName": {
    "label": "County",
    "format": "text"
  },
  "countyFips": {
    "label": "County FIPS",
    "format": "text"
  },
  "stateFips": {
    "label": "State FIPS",
    "format": "text"
  },
  "tract": {
    "label": "Census Tract",
    "format": "text"
  },
  "block": {
    "label": "Census Block",
    "format": "text"
  },
  "censusBlockGeoid": {
    "label": "Block GEOID",
    "format": "text"
  },
  "geographies": {
    "label": "Geographies",
    "format": "object"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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