Turkey sits at a unique internet crossroads — three dominant carriers, aggressive geo-restrictions on local platforms, and a government that actively filters traffic. If you’re scraping Turkish e-commerce (Trendyol, Hepsiburada), monitoring local news sources, or running ad verification on Turkish social feeds, you need IPs that actually resolve as Turkcell, Vodafone TR, or Turk Telekom. Datacenter IPs get blocked within seconds on most Turkish portals. This guide covers what carrier breakdown to look for, which proxy types hold up, and how to configure rotation for Turkish targets in 2026.
Turkey’s carrier landscape and why it matters for scraping
Turkey has three major mobile carriers and one dominant fixed-line ISP, all with distinct ASN footprints that Turkish platforms check against.
| Carrier | Type | ASN | Notable for |
|---|---|---|---|
| Turkcell | Mobile | AS9121 | Largest mobile pool, highest trust score on Trendyol |
| Vodafone TR | Mobile | AS15897 | Good residential coverage in Istanbul/Ankara |
| Turk Telekom | Fixed + Mobile | AS47331 / AS9121 | Broadest geographic spread, fiber + DSL |
| Superonline (TTNet) | Fixed | AS34984 | ISP subsidiary, common in household ASNs |
Turkcell IPs carry the most weight on local platforms because a disproportionate share of Turkish mobile traffic runs through AS9121. If your target is a consumer-facing Turkish site, Turkcell residential or mobile is the first thing to source. Vodafone TR covers the second tier well, especially for Istanbul-metro geolocated requests. For fixed-line targets (government portals, banking), Turk Telekom / TTNet ASNs look more natural than mobile.
Mobile vs. residential vs. datacenter for Turkish targets
Turkish anti-bot systems have matured significantly since 2024. Trendyol in particular runs device fingerprinting in addition to IP checks, but the IP layer is still the primary gate. Here is how the three proxy types stack up:
- Mobile (4G/LTE): Highest trust, rotates IP on each cycle, hardest to block at carrier level. Turkcell LTE IPs are the most natural for Turkish consumer platforms. Expect 2-5 requests per rotation cycle before the IP changes.
- Residential: Good for sessions that need consistency (login flows, cart actions). Look for Turkish ISP ASNs explicitly — providers that list “Turkey residential” but serve Cogent or Limelight datacenter IPs are selling you blocked ranges.
- Datacenter: Fine for public data (sitemaps, pagination on non-gated pages) but will hit 403/CAPTCHA on authenticated or product-detail endpoints on most major Turkish e-commerce.
For comparison, the situation in Turkey is closer to what you see with Korean platforms (where KT, SKT, and LG U+ IP coverage matters for local trust signals) than to Western European markets where datacenter IPs still get reasonable pass rates.
Configuring rotation for Turkish endpoints
Trendyol and Hepsiburada both implement rate limiting per session token, not just per IP. You need to pair IP rotation with session header resets. Here is a minimal Python setup using a mobile proxy endpoint with per-request rotation:
import httpx
PROXY_ENDPOINT = "http://user:pass@tr-mobile.yourprovider.com:8080"
HEADERS = {
"User-Agent": "Mozilla/5.0 (Linux; Android 13; SM-A546B) AppleWebKit/537.36",
"Accept-Language": "tr-TR,tr;q=0.9",
"Accept-Encoding": "gzip, deflate, br",
}
def fetch_product(url: str) -> httpx.Response:
with httpx.Client(proxies=PROXY_ENDPOINT, headers=HEADERS, timeout=15) as client:
return client.get(url)Two things to get right here: set Accept-Language: tr-TR (Turkish platforms check this against the IP’s geo) and use an Android UA matching a device common in Turkey (Samsung A-series is the dominant handset). Mismatching a Turkcell mobile IP with a US English desktop UA is a common mistake that triggers soft blocks before the rate limit even kicks in.
Poland-based scraping teams running multi-country campaigns often handle Turkish targets as a separate pool entirely — the Orange, Plus, Play, and T-Mobile PL network setup works well for European targets but Polish IPs return 403 on most Turkish geo-gated content.
Provider comparison: who actually has Turkish carrier IPs
Most proxy providers list “Turkey” as a location but source IPs from a handful of datacenter nodes in Istanbul. Genuine Turkcell and Vodafone TR mobile IPs are scarce in the residential proxy market. When evaluating providers, ask specifically for the ASN list before purchasing.
- Verify ASN before buying — request a sample IP and check it against ipinfo.io or bgp.he.net. Legitimate Turkish mobile IPs should return AS9121 (Turkcell) or AS15897 (Vodafone TR).
- Check the pool size — Turkish mobile pools under 10,000 IPs will exhaust quickly on any volume scraping. Ask for unique IP counts, not “proxy count.”
- Test sticky session duration — Trendyol login flows need at least 60-second sticky sessions. Some providers cap at 30 seconds on mobile endpoints.
- Confirm geo-city granularity — Istanbul and Ankara IPs behave differently on localized search results and price displays. Providers that can route to a specific city are worth the premium for price-monitoring use cases.
This evaluation process mirrors what you’d run for South Asian targets: the Jazz, Telenor, Zong, and Ufone mobile IP sourcing challenge in Pakistan follows the same ASN-verification approach, because the gap between a labeled location and an actual carrier IP is widest in emerging markets.
Handling Turkish platform-specific blocks
A few Turkish-specific patterns worth knowing:
- Trendyol: Uses a browser integrity check on product pages. Playwright with a Turkcell mobile residential IP + Turkish locale passes cleanly;
httpxalone fails on authenticated endpoints. - Hepsiburada: Less aggressive on IP checks but runs TLS fingerprinting. Use a client that presents a standard TLS 1.3 handshake (avoid
requestsdefault cipher ordering). - Government / e-Devlet portals: Require Turk Telekom or TTNet fixed-line ASNs. Mobile IPs get flagged even if geolocated correctly.
- News and media (Hurriyet, Sabah): Standard residential IPs work fine. Datacenter IPs hit soft blocks after 20-30 requests per session.
If you’re building a multi-country pipeline that includes Russia alongside Turkey, the Russian mobile proxy provider breakdown is worth reading alongside this — both markets share the trait of heavy government filtering that makes carrier-native IPs non-negotiable.
Taiwan is an instructive contrast: Chunghwa, Far EasTone, and Taiwan Mobile IPs work on a lighter filtering regime, so datacenter IPs still pass on many Taiwanese targets. Turkey is stricter.
Bottom line
For Turkish scraping in 2026, source Turkcell mobile (AS9121) as your primary pool and Vodafone TR as a fallback — anything else will get rate-limited or hard-blocked on the platforms that matter. Verify ASNs before committing to a provider, pair IP rotation with locale-matched headers, and treat Trendyol as your hardest benchmark when evaluating proxy quality. DRT covers carrier-specific proxy sourcing for high-filter markets in depth; the country proxy guides linked above are a good starting point if you’re expanding beyond Turkey.
Related guides on dataresearchtools.com
- Best South Korea Proxies 2026: KT, SKT, LG U+ IP Coverage Tested
- Best Taiwan Proxies 2026: Chunghwa, Far EasTone, Taiwan Mobile IPs
- Best Poland Proxies 2026: Orange, Plus, Play, T-Mobile PL Networks
- Best Pakistan Proxies 2026: Jazz, Telenor, Zong, Ufone Mobile IPs
- Pillar: Russian Mobile Proxies: 5 Best Providers for High-Trust Russian IPs in 2026