GET /address/{address}
Pass an address. Get whether it exists in official government records.
Try it
valid
Input parses as a US address. Junk returns valid: false on a 200, never a 404
registered
Address exists in official government records. True or false only where the records cover the area, null when they do not. Not a deliverability claim
number
House number
street
Standardized street line
unit
Unit as given. registered reflects the building when the records have no unit rows
city
City name
district
District code (US county FIPS)
state
State code
postal
5-digit ZIP
latitude
Registry point latitude (null when not registered)
longitude
Registry point longitude (null when not registered)
1
Freeform, as typed. Street, city, state, ZIP in one string.
2
valid, registered, the standardized parts, county, and coordinates.
3
q= plus a ZIP or a city. A house number appears only when it exists.
Official government records. Every plan.
Pass an address the way a form gave it to you. Back come valid, registered, and the standardized parts: number, street, unit, city, county, state, ZIP, and the registry coordinates. registered means the address exists in official government records, the same records 911 systems are built on. It is not a USPS deliverability claim.
Autocomplete rides the same records. Pass ?q= with a ZIP or a city and state, and ranked suggestions come back. A house number appears only when it exists in the records, never invented. Junk answers valid: false on a 200, never a 404.
RESPONSE
$ curl "https://api.parseapi.com/address/152%20200th%20Avenue%2C%20Ellsworth%20MN" \ -H "X-API-Key: YOUR_API_KEY" // 200 · ~16ms US · ~38ms worldwide { "address": "152 200th Avenue, Ellsworth, MN 56129", "valid": true, "registered": true, "number": "152", "street": "200th Avenue", "unit": null, "city": "Ellsworth", "district": "27105", "district_name": "Nobles", "state": "MN", "state_name": "Minnesota", "postal": "56129", "country": "US", "country_name": "United States", "latitude": 43.506772, "longitude": -96.073118 }
Response fields
QUESTIONS
SPEED
US
16ms
EU
21ms
APAC
68ms
LatAm
19ms
ME
112ms
United States, from official government records: about 90 million address points compiled from state and local 911 authorities.
Coverage follows the records ZIP by ZIP. Where they stop, registered answers null, never a guess. Hawaii, Michigan, New Hampshire, and Nevada are not in the current compilation.