Skip to main content
Example curl request
curl --request GET \
     -x "http://proxy.geonode.io:<port>" \
     --user "<geonode_username>-country-<country_code>-not.city-<city_1>,<city_2>:<geonode_password>" \
     --url "http://ip-api.com/json"
{
  "status": "success",
  "country": "United States",
  "countryCode": "US",
  "region": "NC",
  "regionName": "North Carolina",
  "city": "Charlotte",
  "zip": "28202",
  "lat": 35.2327,
  "lon": -80.8461,
  "timezone": "America/New_York",
  "isp": "FiberPower LLC",
  "org": "FiberPower LLC",
  "as": "AS214483 FiberPower LLC",
  "query": "38.13.166.129"
}

Response

Successful proxy response with excluded cities.

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:

"NC"

regionName
string

Full region name.

Example:

"North Carolina"

city
string

City name.

Example:

"Charlotte"

zip
string

Postal code.

Example:

28202

lat
number

Latitude.

Example:

35.2327

lon
number

Longitude.

Example:

-80.8461

timezone
string

Timezone.

Example:

"America/New_York"

isp
string

Internet Service Provider.

Example:

"FiberPower LLC"

org
string

Organization.

Example:

"FiberPower LLC"

as
string

Autonomous system name.

Example:

"AS214483 FiberPower LLC"

query
string

IP address returned.

Example:

"38.13.166.129"