Select a Platform
- Home
- Quick Overview
- App Manager
- SDKs
- Features
- REST API
- API Intro
- App Authentication
- Application Data
- Custom Auth
- Custom Data
- Events
- Events Intro
- Event Add
- Event Get
- Event Update
- Event Comment Add
- Event Comment Delete
- Event Comments Get
- Event Comment Update
- Event Participant Invite
- Event Participants Invite
- Event Participants Get
- Event Participant Delete
- Event Request Invitation
- Event RSVP
- Events Search
- Events Search by Person ID
- Event AppData Add
- Event AppData Delete
- Event AppData Get
- Event AppData Get All
- Event AppData Update
- Friends
- GeoCode
- Locations
- Notifications
- Persons
- Definitions
- Enums
GeoCode by Address
Description
If available, returns a geocode record containing the approximate latitude and longitude coordinates for a physical address. Limited to United States addresses at this time.
Endpoints
https://service.proxomo.com/v09/json/geo/lookup/address/{address}
https://service.proxomo.com/v09/xml/geo/lookup/address/{address}
HTTP Method
GET
URL Parameters
| Name | Data Type | Required? | Notes |
|---|---|---|---|
| address | String | Yes | Physical address used to approximate a geographic location. |
Returns
A geocode record containing the approximate location of the specified physical address.
JSON Sample
Request:
GET: https: //service.proxomo.com/v09/json/geo/lookup/address/1700%20N.%20Glennville%2C%20Richardson%2C%20Texas%2C%2075081
Response:
JSON GET Result:
{
"Address": "1700 International Pkwy",
"City": null,
"CountryCode": null,
"CountryName": null,
"DSTOffset": 0,
"GMTOffset": 0,
"Latitude": "32.971559",
"Longitude": "-96.707143",
"Precision": null,
"RawOffset": 0,
"Score": 0,
"State": null,
"TimeZoneName": null,
"Zip": "75081"
}
JSON GET Result:
{
"Address": "1700 International Pkwy",
"City": null,
"CountryCode": null,
"CountryName": null,
"DSTOffset": 0,
"GMTOffset": 0,
"Latitude": "32.971559",
"Longitude": "-96.707143",
"Precision": null,
"RawOffset": 0,
"Score": 0,
"State": null,
"TimeZoneName": null,
"Zip": "75081"
}
