All data sources

Census Geocoder

Unknown authcensus-geocoder

US Census Bureau Geocoder - address geocoding, reverse geocoding, and geographic identifiers. Convert addresses to coordinates, coordinates to addresses, and get Census geography (county, tract, block) at a location. CRITICAL USAGE RULES: 1. No authentication required 2. US addresses only 3. Use geocodeAddress() for free-form address to coordinates 4. Use reverseGeocode() for coordinates to address/county

Provenance

PublisherCensus Geocoder

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • geocodeAddress

    unknown

    Geocode a street address into geographic coordinates and census geography.

    Input schema
    {
      "type": "object",
      "properties": {
        "address": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "address"
      ]
    }
  • geocodeAddressComponents

    unknown

    Geocode street, city, state, and ZIP components into geographic coordinates.

    Input schema
    {
      "type": "object",
      "properties": {
        "street": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "zip": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "street"
      ]
    }
  • reverseGeocode

    unknown

    Reverse geocode coordinates into an address and census geography.

    Input schema
    {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number"
        },
        "longitude": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "latitude",
        "longitude"
      ]
    }
  • batchGeocode

    unknown

    Geocode multiple street addresses in one batch request.

    Input schema
    {
      "type": "object",
      "properties": {
        "addresses": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "addresses"
      ]
    }
  • getGeography

    read

    Retrieve the census geography associated with a coordinate.

    Input schema
    {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number"
        },
        "longitude": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "latitude",
        "longitude"
      ]
    }