Skip to main content
Example curl request
curl --request GET \
     -x "http://proxy.geonode.io:9000" \
     --user "<geonode_username>-country-us-not.asn-<asn_number>:<geonode_password>" \
     --url "http://ip-api.com/json"
{
  "status": "success",
  "country": "United States",
  "countryCode": "US",
  "region": "MA",
  "regionName": "Massachusetts",
  "city": "Springfield",
  "zip": "01101",
  "lat": 42.0986,
  "lon": -72.5931,
  "timezone": "America/New_York",
  "isp": "RingSquared CC",
  "org": "",
  "as": "AS7849 RingSquared CC",
  "query": "161.77.215.31"
}

Response

Successful proxy response with ASN exclusion.

status
string
Example:

"success"

country
string
Example:

"United States"

countryCode
string
Example:

"US"

region
string
Example:

"MA"

regionName
string
Example:

"Massachusetts"

city
string
Example:

"Springfield"

zip
string
Example:

"01101"

lat
number
Example:

42.0986

lon
number
Example:

-72.5931

timezone
string
Example:

"America/New_York"

isp
string
Example:

"RingSquared CC"

org
string
Example:

""

as
string
Example:

"AS7849 RingSquared CC"

query
string
Example:

"161.77.215.31"