# Census tract number lookup by address

**Use case:** 

Match a U.S. street address and return its available Census tract code alongside state and county FIPS fields.

## Input

```json
{
  "target": "addresses",
  "addresses": [
    {
      "address": "350 Fifth Ave, New York, NY 10118",
      "reference": "property"
    }
  ]
}
```

## Output

```json
{
  "target": {
    "label": "Target",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "itemIndex": {
    "label": "Input position",
    "format": "integer"
  },
  "reference": {
    "label": "Reference",
    "format": "string"
  },
  "requestedAddress": {
    "label": "Requested address",
    "format": "string"
  },
  "requestedLatitude": {
    "label": "Requested latitude",
    "format": "number"
  },
  "requestedLongitude": {
    "label": "Requested longitude",
    "format": "number"
  },
  "error": {
    "label": "Item error",
    "format": "string"
  },
  "matchedAddress": {
    "label": "Matched address",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "addressComponents.streetName": {
    "label": "Street name",
    "format": "string"
  },
  "addressComponents.city": {
    "label": "City",
    "format": "string"
  },
  "addressComponents.state": {
    "label": "State abbreviation",
    "format": "string"
  },
  "addressComponents.zipCode": {
    "label": "ZIP code",
    "format": "string"
  },
  "tigerLine.lineId": {
    "label": "Line ID",
    "format": "string"
  },
  "tigerLine.side": {
    "label": "Street side",
    "format": "string"
  },
  "tigerLine.fromAddress": {
    "label": "Range start",
    "format": "string"
  },
  "tigerLine.toAddress": {
    "label": "Range end",
    "format": "string"
  },
  "geography.stateName": {
    "label": "State",
    "format": "string"
  },
  "geography.stateFips": {
    "label": "State FIPS",
    "format": "string"
  },
  "geography.countyName": {
    "label": "County",
    "format": "string"
  },
  "geography.countyFips": {
    "label": "County FIPS",
    "format": "string"
  },
  "geography.countyGeoid": {
    "label": "County GEOID",
    "format": "string"
  },
  "geography.censusTract": {
    "label": "Census tract",
    "format": "string"
  },
  "geography.tractGeoid": {
    "label": "Tract GEOID",
    "format": "string"
  },
  "geography.censusBlock": {
    "label": "Census block",
    "format": "string"
  },
  "geography.blockGeoid": {
    "label": "Block GEOID",
    "format": "string"
  },
  "geography.layers": {
    "label": "Geography layers",
    "format": "array"
  }
}
```

## About this Actor

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