Skip to main content
Example curl request
curl --request GET \
     -x "http://proxy.geonode.io:<port>" \
     --user "<geonode_username>-country-<country_code>-not.state-<state_1>,<state_2>:<geonode_password>" \
     --url "http://ip-api.com/json"
{
  "status": "success",
  "country": "United States",
  "countryCode": "US",
  "region": "NY",
  "regionName": "New York",
  "city": "Queens",
  "zip": "11436",
  "lat": 40.6744,
  "lon": -73.8016,
  "timezone": "America/New_York",
  "isp": "Charter Communications",
  "org": "Spectrum",
  "as": "AS12271 Charter Communications Inc",
  "query": "72.227.174.55"
}

Response

Successful proxy response with excluded states.

status
string

Indicates request status.

Example:

"success"

country
string

Country name.

Example:

"United States"

countryCode
string

Two-letter ISO country code.

Example:

"US"

region
string

Region code.

Example:

"NY"

regionName
string

Full region name.

Example:

"New York"

city
string

City name.

Example:

"Queens"

zip
string

Postal code.

Example:

11436

lat
number

Latitude.

Example:

40.6744

lon
number

Longitude.

Example:

-73.8016

timezone
string

Timezone.

Example:

"America/New_York"

isp
string

Internet Service Provider.

Example:

"Charter Communications"

org
string

Organization.

Example:

"Spectrum"

as
string

Autonomous system name.

Example:

"AS12271 Charter Communications Inc"

query
string

IP address returned.

Example:

"72.227.174.55"