Counterfeiters don't list fakes where your legal team is watching. They geo-fence listings to markets your brand rarely checks, cloak against corporate IP ranges, and rotate seller accounts faster than a manual review process can keep up. By the time someone on your team spots the listing, it's already sold a few hundred units.
What are brand protection proxies, and why do you need them?
Brand protection proxies are residential or mobile IPs that let you scan marketplaces, social platforms, and websites as a local buyer would see them, in every country you sell in, without getting blocked or fed a filtered version of the page. Counterfeiters and unauthorized resellers hide listings from corporate IP ranges and known data-center ASNs, so monitoring from your office network or a cloud server often shows a clean result while the infringing listing stays live for actual shoppers.
The short version: if you're checking for counterfeits, MAP violations, or unauthorized sellers from your own network, you're probably not seeing what your customers see.
Why manual monitoring stops working fast
The scale of the problem is the issue, not the concept. Counterfeit and pirated goods account for roughly $467 billion in global trade, or about 2.3% of it, according to OECD and EUIPO estimates. That volume doesn't sit on a handful of marketplaces — it spreads across e-commerce platforms, social commerce, resale apps, and independent storefronts, often with the same operation running several seller accounts at once so a single takedown barely slows it down.
A few patterns make this specifically hard to catch by hand:
Geo-targeted listings. Infringers often show different products, or no counterfeit listing at all, depending on the buyer's apparent location. A brand protection team checking from one country's IP range only ever sees the version aimed at that market.
IP-based cloaking. Sellers who've been targeted by legal teams before learn to recognize the ranges those teams monitor from — corporate offices, known VPN exits, cloud provider blocks — and simply serve those visitors a clean page.
Account churn. Removing one seller account rarely stops the operation behind it. A replacement account can be live within hours, which means monitoring has to be continuous, not a weekly sweep.
Residential proxies vs. mobile vs. datacenter
Not every proxy type works for this. Here's how they stack up for brand protection specifically:
Proxy type | Works for brand protection? | Why |
|---|---|---|
Residential | Yes — recommended for most cases | Looks like an ordinary shopper's home connection; not on any known-monitoring blocklist |
Mobile | Yes — for the hardest targets | Best for platforms with the strictest detection: Instagram, TikTok, Facebook Marketplace |
Datacenter | No | Flagged by ASN on sight; reputable marketplaces block the range before you get a result |
Residential IPs, matched to the country you're protecting, cover the large majority of marketplace and web monitoring. Mobile proxies cost more per GB but earn it back on social platforms, where residential IPs increasingly get flagged too.
Setting it up: country targeting and sticky sessions
Two things matter more than anything else in a brand protection scraper: which country you're requesting from, and whether you need the same IP across a multi-page check.
For a one-off listing check, rotate a fresh IP per request:
bash
# Rotating residential, targeted to a specific market
curl -x "http://login:country-us@ip.simplynode.io:9003" \
"https://marketplace.example.com/search?q=yourbrand"For a paginated sweep — walking through 40 pages of search results for the same query — hold one IP for the duration with a sticky session, so the marketplace doesn't see forty different visitors requesting the same query in sequence:
python
import requests, hashlib
session_id = hashlib.md5(b"yourbrand-us-sweep").hexdigest()[:8]
proxy = f"http://login:country-us-session-{session_id}-ttl-1800@ip.simplynode.io:9003"
proxies = {"http": proxy, "https": proxy}
for page in range(1, 41):
r = requests.get(f"https://marketplace.example.com/search?q=yourbrand&page={page}",
proxies=proxies, timeout=10)
# parse and flag listings hereRun the same query across every country your brand ships to, not just your home market — that's the step most teams skip, and it's the one that catches geo-fenced infringement.
Four mistakes that let counterfeits slip through
Scanning from a single country. If your brand sells in 15 markets and you only monitor from one, you're not seeing the abuse aimed at the other 14.
Using corporate or cloud IPs. Infringers who've dealt with a legal team before recognize the ranges those teams use. A residential IP doesn't carry that signature.
Hammering one IP for the whole sweep. A single IP making hundreds of requests gets rate-limited fast, and a rate-limited scan returns partial or stale data — which can look like "nothing found" when the listing is very much still live.
Skipping retry logic. Even a well-run residential network fails on roughly 1-2% of requests. Without retries, that's a real chance of missing the one listing you needed to catch.
What this looks like at scale
The pattern holds up in production: a brand protection agency running SimplyNode's residential network sweeps 30 marketplaces and social platforms daily across 50 markets, with country-targeted requests feeding a prioritized takedown queue instead of a spreadsheet someone updates by hand. That's the practical shift proxies make — from spot-checking a few markets when someone has time, to a scan that runs every day across every market that matters.
The problem is only getting harder to ignore manually. Industry reporting puts the share of counterfeit trade happening through social and e-commerce channels at over 80%, up sharply from a decade ago, and platforms like Instagram and TikTok now host tens of thousands of accounts pushing counterfeit or "dupe" listings at any given time. None of that is visible from a browser tab on your office wifi.
Pricing
SimplyNode's residential proxies start at $2.25/GB at scale, with no expiration on unused bandwidth and no monthly minimum. Most brand protection monitoring sits in the 100-500 GB/month range, which lands around $2.50-$3/GB before loyalty discounts kick in. Mobile proxies, needed only for the social platforms that flag residential traffic, start at $4.25/GB.
Because monitoring is usually a recurring, predictable workload, it's worth testing on 1 GB first — run your actual scraper against your actual target list and check the success rate before committing to volume.
FAQ
What proxies are best for brand protection monitoring? Residential proxies, matched to the country you're monitoring, cover the majority of marketplace and web-based brand protection work. Mobile proxies are worth the extra cost only for platforms — mainly social media — where residential IPs get flagged.
Why can't I just monitor from my company's own network? Counterfeit sellers who've dealt with brand enforcement before recognize corporate IP ranges, known cloud provider blocks, and common VPN exits, and serve those visitors a clean version of the page. A residential IP doesn't carry that signature.
How do I check for counterfeits in multiple countries at once? Run the same search or listing check through country-targeted residential IPs for each market you sell in. Geo-fenced infringement is only visible from within the country it targets.
Do I need a sticky session or rotating IPs for marketplace monitoring? Rotating IPs work for single listing checks. Sticky sessions — holding one IP for the length of a multi-page sweep — work better for paginated search results, so the site doesn't see dozens of different visitors requesting the same query back to back.
:format(webp))