Skip to content

Boost Proxy Speed by 5x Find Your Closest anyIP Server

Choose your server


At anyIP, we understand that milliseconds are crucial, especially if you’re doing long scrapes, the latency becomes important.

We’ve spent a year changing how our infrastructure works to divide the previous latencies up to 5x.

At the moment, we offer three main regions such as:

  • Europe / Africa: portal-eu.anyip.io
  • Asia / Oceania: portal-as.anyip.io
  • North America / South America: portal-na.anyip.io

You can try it by executing this curl command from our servers in the USA:

Terminal window
curl -v --proxy "http://user_XXXX:[email protected]:1080" http://ip-api.com/

Or here, our servers in France Europe:

Terminal window
curl -v --proxy "http://user_XXXX:[email protected]:1080" http://ip-api.com/

✅ No difference in the result, only the speed changes.

How to choose the fastest server?


Check the closest server by executing a ping to each of our available endpoints.

To make your life simpler, here is a bash script you can execute from the server (or machine) that will connect to our proxies:

#!/bin/bash
# Define the hosts
hosts=("portal-na.anyip.io" "portal-as.anyip.io" "portal-eu.anyip.io")
# Function to ping and get the average time
ping_host() {
# Ping the host with 3 packets and extract the average time
ping -c 3 $1 | tail -1 | awk -F '/' '{print $5}'
}
# Initialize min time and fastest host
min_time=1000000
fastest_host=""
# Loop through each host and get ping times
for host in ${hosts[@]}; do
echo "Pinging $host..."
time=$(ping_host $host)
echo "Average time for $host: $time ms"
# Check if this time is less than the min time
if (( $(echo "$time < $min_time" | bc -l) )); then
min_time=$time
fastest_host=$host
fi
done
# Output the fastest host
echo "The fastest host is $fastest_host with an average time of $min_time ms"

After execution, here’s a sample of what you should get:

Terminal window
# don't forget to set the file's permission to "executable"
chmod +x ping_datacenter.sh
# then launch it!
./ping_datacenter.sh
Pinging portal-na.anyip.io...
Average time for portal-na.anyip.io: 389.126 ms
Pinging portal-as.anyip.io...
Average time for portal-as.anyip.io: 50.498 ms
Pinging portal-eu.anyip.io...
Average time for portal-eu.anyip.io: 220.889 ms
**The fastest host is portal-as.anyip.io** with an average time of 50.498 ms

Conclusion


The speed improvement can vary depending on where your machine and where the IPs you’re targeting are located.****

For optimal performance, we suggest selecting the server closest to your location. This ensures that all data exchanged between you and the proxy is transmitted via our professional peering network, which is faster than any consumer provider.