https://github.com/datamade/address-matching-api
https://github.com/datamade/address-matching-api
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/datamade/address-matching-api
- Owner: datamade
- Created: 2014-11-17T17:56:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-17T23:32:32.000Z (over 11 years ago)
- Last Synced: 2025-06-04T19:18:01.896Z (about 1 year ago)
- Size: 133 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
address-matching-api
====================
### Query
/?search="123 Main St"
### JSON Response
```javascript
"results" : [
{
"address_components" : [ # the components of the matched address not the query address
{
"name" : "123",
"types" : "address_number"
},
{
"name" : "South Main St",
"types" : [ "street_name" ]
}]
"formatted_address" : "123 South Main St",
"geometry" : {
"location" : {
"lat" : 87.42291810,
"lng" : -42.08542120
},
"types" : [ "street_address" ] # let's start with just street addresses, not intersections or others
}
],
"status" : "OK" # if matches not found then, return NotFound status
}
```