ASN Targeting

Evomi Residential Proxies offer ASN (Autonomous System Number) targeting for advanced network-level control. This enterprise feature enables connections through specific network infrastructures identified by their unique ASN.

Implementation

Append _asn-<ASN> to your proxy password using the numeric ASN format:

http://testuser:testpassword_asn-AS23525@rp.evomi.com:1000

Examples

CURL:

curl -x http://testuser:testpassword_asn-AS15169@rp.evomi.com:1000 https://ip.evomi.com/s

curl -x http://testuser:testpassword_country-DE_asn-AS3320@rp.evomi.com:1000 https://ip.evomi.com/s
import requests

proxies = {
"http": "http://testuser:testpassword_asn-AS36561@rp.evomi.com:1000",
}
response = requests.get("https://ip.evomi.com/s", proxies=proxies)
print(response.text)
const fetch = require('node-fetch');

const proxyUrl = 'http://testuser:testpassword_asn-AS23525@rp.evomi.com:1000';
const url = 'https://ip.evomi.com/s';

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

Common Use Cases

  • Network infrastructure analysis
  • ISP backbone testing
  • Corporate network simulations
  • DDoS mitigation testing
  • Content delivery network validation
⚠️
Note: The asn parameter is an extra feature. Using it will incur additional bandwidth consumption. You can see the exact extra usage history in the dashboard and in the Generator.
Advanced Configuration
Combine with ISP targeting for hyper-specific routing:
_asn-AS1234_isp-comcast
_country-CA_asn-AS5678
_region-CA_QC_asn-AS9012