Filtering IPs by Type

Geonode's proxy service allows you to filter IPs based on their type for targeted proxy usage.
The available IP types are:

  • Residential: Real users' IP addresses from ISPs.
  • Datacenter: IPs hosted in data centers, often used for high-speed connections.
  • Mix: A combination of both residential and datacenter IPs.

How to Specify IP Type

You can specify the IP type by appending type-<type-of-ip> to the username when authenticating.

Example cURL request:

# Generic example
curl \
  -x proxy.geonode.io:<port> \
  -U "<username>-type-<type-of-ip>:<password>" \
  http://ip-api.com

# Actual example for a residential IP
curl \
  -x proxy.geonode.io:9001 \
  -U "username123-type-residential:password123" \
  http://ip-api.com

# Actual example for a datacenter IP
curl \
  -x proxy.geonode.io:9001 \
  -U "username123-type-datacenter:password123" \
  http://ip-api.com

# Actual example for a mix IP
curl \
  -x proxy.geonode.io:9001 \
  -U "username123-type-mix:password123" \
  http://ip-api.com

Note that if there is no type set in the proxy config, it will be set to residential for the default type.

Language