Proxies

What Is an ISP Proxy (Static Residential)?

What Is an ISP Proxy (Static Residential)? — conceptual illustration
On this page

An ISP proxy (also called a \"static residential\" proxy) is a fixed IP address that physically sits in a datacenter but is registered to a consumer internet provider. Every IP belongs to an autonomous system number (ASN) — the ID for the network that owns it. A website checking your IP sees a residential provider like \"Comcast\" or \"Deutsche Telekom\", which carries the high trust those home networks get, but the IP itself stays the same over time because it runs on stable datacenter hardware. That mix is especially useful on sites that judge you across a whole session rather than a single request — multi-request trust scoring most of all.

Quick facts

Trust scoreHigh — uses residential ASN reputation
StabilityStatic — same IP for the duration of your lease
Typical cost~$1.50–5 per IP per month (vs ~$3–10/GB residential)
Best forMulti-request scoring, account-tied work, continuous monitoring
Common providersBright Data ISP, Oxylabs ISP, IPRoyal, Massive ISP

How ISP proxies work

A proxy provider partners with a consumer ISP (or gets a sub-allocation of addresses from one) so it can run a block of IPs registered under that ISP's ASN. The IPs physically live in the provider's datacenter, but the public records that say who owns them — BGP announcements (how networks tell the internet which IPs they route) and WHOIS (the public registry of IP ownership) — list the consumer ISP. So when an anti-bot system looks up the ASN, the IP appears to be an ordinary Comcast or BT home connection, not a datacenter IP.

Because the IP never changes and the provider owns the hardware, there is no rotation by default. You lease one specific IP for a fixed term (monthly or yearly), and for that period it is yours alone or shared by a small group.

Why multi-request scoring rewards ISP static

Multi-request bot managers score you across many requests, not just one: trust builds up as the same client keeps making consistent, successful requests. Its _abck cookie starts as untrusted (~-1~) and flips to trusted (~0~) after the first successful sensor.js POST — the data the sensor script collects about your browser — then stays trusted as long as the session looks consistent. If you swap to a different residential IP partway through, that built-up trust resets, because the system now sees a brand-new, unproven client. A static ISP IP keeps the same identity for hours or days, which is exactly how a real person browses from home.

For scraping that depends on being logged in (account workflows, a persistent shopping cart), ISP static is the only sensible choice, since the session cookies have to stay attached to one stable identity.

When to use ISP vs residential vs mobile

ISP static: long sessions, multi-request trust scoring, account-tied scraping — anything where trust needs to build up across multiple requests.

Rotating residential: lots of independent requests where each one stands alone as its own session — search scraping, SERP collection (search-results pages), listing snapshots.

Mobile: the toughest anti-bot targets, where the IP's reputation by itself decides whether you get through.

On cost: ISP at roughly $2 per IP per month, supporting hundreds of long-lived sessions, is far cheaper than the per-gigabyte pricing of rotating residential for the same job.

Code example

python
from curl_cffi import requests

# Anti-bot-protected site: ISP static IP + Chrome TLS + warm-up
s = requests.Session(impersonate="chrome131")
isp_proxy = {"https": "http://user:[email protected]:port"}

# 1. Warm up on the homepage so _abck flips to ~0~
s.get("https://akamai-target.com/", proxies=isp_proxy)

# 2. Same session, same IP — trust accumulated, _abck trusted
for page in range(1, 11):
    r = s.get(f"https://akamai-target.com/listings?page={page}",
              proxies=isp_proxy)
    print(page, r.status_code)

Related terms

Concept map

How ISP Proxy connects

The terms most directly tied to this one. Hover a node to see its neighbours, click to preview, drag to rearrange.

0 terms · 0 connections
You are here · Proxies
Building map…

Frequently asked questions

How is an ISP proxy different from a residential proxy?

A residential proxy borrows real consumer devices in a peer-to-peer network — your request actually leaves through someone's home router. An ISP proxy is datacenter hardware that is simply registered under a residential ASN. Both look "residential" to the sites you visit; ISP is faster and more stable, while residential gives you a wider, more varied pool of IPs.

Is an ISP proxy the same as a datacenter proxy?

The hardware is the same, but the ASN reputation is completely different. A plain datacenter proxy is registered under AWS, GCP, DigitalOcean, and similar — well-known datacenter ASNs that anti-bots flag instantly. An ISP proxy is registered under Comcast, BT, Deutsche Telekom, and the like — residential ASNs that anti-bots trust. Same machine; what matters is whose name is on the BGP announcement.

Can I rotate ISP proxies?

You can rotate across a pool of ISP IPs that you control, but you should not switch IPs in the middle of a session on vendors that score across requests. The whole point of ISP static is staying stable — rotating throws that away. If you actually need rotation, use rotating residential or mobile instead.

How many ISP IPs do I need?

For account-tied scraping: one IP per account. For session-based crawling: enough that your parallel sessions never have to share an IP at the same time. For most production setups, 50–200 ISP IPs in a region cover the common workloads.

Last updated: 2026-05-31