Provenance
PublisherCensus Geocoder
Freshness & coverage
FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required
Methods (5)
geocodeAddress
unknownGeocode a street address into geographic coordinates and census geography.
Input schema
{ "type": "object", "properties": { "address": { "type": "string" } }, "additionalProperties": false, "required": [ "address" ] }geocodeAddressComponents
unknownGeocode 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
unknownReverse 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
unknownGeocode multiple street addresses in one batch request.
Input schema
{ "type": "object", "properties": { "addresses": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "addresses" ] }getGeography
readRetrieve the census geography associated with a coordinate.
Input schema
{ "type": "object", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "additionalProperties": false, "required": [ "latitude", "longitude" ] }
