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 IP Address
Description
If available, returns a geocode record containing the approximate latitude and longitude coordinates for an Internet Protocol (IP) address.
Endpoints
https://service.proxomo.com/v09/json/geo/lookup/ip/{ipAddress}
https://service.proxomo.com/v09/xml/geo/lookup/ip/{ipAddress}
HTTP Method
GET
URL Parameters
| Name | Data Type | Required? | Notes |
|---|---|---|---|
| ipAddress | String | Yes | Internet Protocol (IP) address used to approximate a geographic location. |
Returns
A GeoCode record containing the approximate location associated with the IP address.
JSON Sample
Request:
GET: https: //service.proxomo.com/v09/json/geo/lookup/ip/76.13.1.3
Response:
JSON GET Result:
{
"IP": "76.13.1.3",
"Latitude": "37.417197",
"Longitude": "-122.008196"
}
JSON GET Result:
{
"IP": "76.13.1.3",
"Latitude": "37.417197",
"Longitude": "-122.008196"
}
