Latency Filter

Evomi Residential Proxies offer a latency-based IP filtering feature that helps you select faster connections for time-sensitive operations. This parameter lets you specify the maximum network latency for IPs in milliseconds (ms).

⚠️

Real-World Considerations
While our tests provide consistent benchmarks, actual user-experienced latency may vary due to:

  • Geographic distance between you and the IP
  • Network congestion
  • Target server response times
  • Local network conditions

Using the Latency Filter

Append _latency-<ms> to your proxy password to set maximum latency:

http://testuser:[email protected]:1000

Implementation Examples

CURL:

curl -x http://testuser:[email protected]:1000 https://ip.evomi.com/s
import requests

proxies = {
"http": "http://testuser:[email protected]:1000",
}
response = requests.get("https://ip.evomi.com/s", proxies=proxies)
print(response.text)
const fetch = require('node-fetch');

const proxyUrl = 'http://testuser:[email protected]:1000';
const url = 'https://ip.evomi.com/s';

fetch(url, { proxy: proxyUrl })
.then(res => res.text())
.then(body => console.log(body));
⚠️

Important Notes

  1. Latency filtering is an extra feature with increased bandwidth costs
  2. Lower latency values significantly reduce available IP pool size
  3. Recommended minimum value: 300ms
  4. Combines with most parameters except extended pool
ℹ️
Optimization Tip
Start with higher latency values (1000-1500ms) and gradually decrease while monitoring success rates. Sudden drops in performance may indicate too strict latency filtering.

Best For

  • Real-time web interactions
  • High-frequency trading data collection
  • Low-latency API integrations
  • Live price monitoring
  • Time-sensitive account operations