Configure any available plan and add-ons. Pay only for 48 hours.
Try proxiesProxies for pulling public business data from Yelp: prospect lists for B2B marketers and sales teams, review tracking for reputation monitoring, and local market analytics by city and category. Packages from $19/month.
Yelp is one of the densest public sources of local-business intelligence in the US: a single city-and-category search returns hundreds of businesses with names, addresses, phone numbers, hours, price ranges, ratings, and review counts — which is why B2B prospect lists, reputation dashboards, and local market studies all end up pulling from it. The official route exists and is worth naming first: the Places API (formerly Fusion) answers business search and detail lookups legitimately — but it’s rationed at thousands of calls per day, returns three short review excerpts per business rather than full text, restricts caching to 24 hours, and forbids building anything that resembles a directory from it. For lookups it’s the right tool; for archives, full review corpora, and category-wide sweeps, teams collect from the public pages — and that’s where Yelp pushes back harder than most targets its size.
The defense is layered, and knowing which layer caught you decides the fix. Yelp runs DataDome-class bot protection: IP reputation is scored first — addresses from hosting-provider ranges start with a penalty as a category, and previously flagged addresses stay flagged — then per-IP rate metering (search pages are throttled noticeably harder than individual business pages), then TLS and behavioral fingerprinting, with CAPTCHAs as the enforcement arm. The collection pattern that survives is built against each layer separately: distribution across a wide pool so no single address ever exceeds a glacial per-IP pace — practitioners report sustained work at roughly 10–15 requests per hour per address, which makes width, not speed, the design variable; dedicated addresses whose history only you write, so you never inherit a stranger’s flag; fresh rotation stock — 3 list refreshes every 30 days swap benched addresses out at no charge; and a client that presents a browser-grade TLS handshake with human pacing, because no amount of IP hygiene fixes a fingerprint that announces automation.
The address-type split follows the layers. Datacenter packages carry the paced, wide, listing-level volume — the economics of a hundred cheap addresses at a polite crawl beat a handful of premium ones on any category-sweep arithmetic, and the mechanics are the standard scraping-infrastructure pattern of a worker per address with rotate-on-block retries. But because Yelp scores origin explicitly, the strictly filtered slice — review pagination on defended pages, anything that keeps drawing challenges from clean datacenter addresses — belongs on static ISP addresses, whose consumer-ISP registration is precisely what an origin scorer wants to see. And since Yelp’s coverage is overwhelmingly US and Canadian, compose the mix accordingly: US addresses match the content you’re collecting, and a mismatched exit country is a self-inflicted redirect before the anti-bot layer even looks at you.
Four infrastructure types — and the use cases each one fits best.
| Our pick for Yelp Packagesdatacenter IPv4 |
Rotating | ISP | IPv6 | |
|---|---|---|---|---|
| IP source | Datacenter, IPv4 | Datacenterthe same 100,000+ IP pool | Consumer ISP networks | Datacenter |
| IP allocation | Static list | Full pool accessthe exit IP rotates on every request | Static list | Static list |
| List refreshes | Up to 3 per month, free | Not applicable | Up to 3 per month, free | Provider-dependent |
| Pricing model | Per-IP packageunlimited bandwidth | Credit-basedyou pay per request, not per IP | Per-IP packageunlimited bandwidth | Per-IP package |
| Website compatibility | ✓ ~100% | ✓ ~100% | ✓ ~100% | ✕ Limitedmany websites don't support IPv6 |
| Speed | Up to 500 Mbps | Up to 300 Mbps | Up to 500 Mbps | Datacenter-grade |
| Anti-fraud trust | Medium | MediumIP rotation helps | High | Low to medium |
| Price | $from $0.07 per IP/month | $$$from $49.00/month | $$from $0.22 per IP/month | $typically the lowest-cost option |
| Best for | Web scraping and automation at a predictable volume: your own IPs, unlimited bandwidth | API scraping that needs as many different IPs as possible without buying a fixed list | Social media, accounts, long sessions — wherever IP trust matters | Use cases where the target site is guaranteed to support IPv6 |
| Buy now | Rotating proxies | ISP proxies | We don't sell these: too many limitations for general-purpose work |
A Yelp collector is a paced worker per address — assign one IP per thread and let retries switch on a challenge. Every address answers on HTTP, HTTPS, SOCKS4, and SOCKS5: copy the snippet for your stack or paste it into your AI coding assistant.
# HTTP or HTTPS proxy curl -x http://login:password@IP:port https://example.com # SOCKS5 curl --socks5-hostname IP:port \ --proxy-user login:password \ https://example.com
import requests proxy = "http://login:password@IP:port" # your proxy from the Dashboard r = requests.get( "https://example.com", proxies={"http": proxy, "https": proxy}, ) print(r.status_code)
import { ProxyAgent } from "undici"; const dispatcher = new ProxyAgent("http://login:password@IP:port"); const res = await fetch("https://example.com", { dispatcher }); console.log(res.status);
$ch = curl_init("https://example.com"); curl_setopt($ch, CURLOPT_PROXY, "IP:port"); curl_setopt($ch, CURLOPT_PROXYUSERPWD, "login:password"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch);
Choose a standard format or create a custom one with any field order and delimiter your software requires.
See the FAQ for the ports used by each protocol.
You can automate purchases, renewals, whitelist changes, and proxy list exports. Create an API key in your Dashboard in a couple of clicks.
Claude, Cursor, and other agents buy proxies, renew plans, and export updated proxy lists through an access token you create in your Dashboard. See how it works.
Per-IP prices shown are for the largest package size. Get an exact quote in the calculator above.
| IP | Country | Port | Protocol | |
|---|---|---|---|---|
| 212.183.88.215 | AT | 80 | HTTP | |
| 47.243.92.199 | HK | 3128 | HTTP | |
| 212.183.88.153 | AT | 80 | HTTP | |
| 212.183.88.13 | AT | 80 | HTTP | |
| 203.95.199.159 | KH | 8080 | HTTP | |
| 154.92.9.3 | JP | 80 | HTTP | |
| 113.204.79.230 | CN | 9091 | HTTP | |
| 181.214.1.97 | AE | 80 | HTTP | |
| 219.93.101.63 | MY | 80 | HTTP | |
| 185.18.250.64 | CH | 80 | HTTP |
A few service metrics—and feedback from our customers.
I use proxies for online games. I have been using the service for many months and I am satisfied with the quality and efficiency. Proxies work as they should and there are practically no disconnects. I recommend it, you will not regret it!
Like the service! Responsive and fast support, affordable prices, convenient renewal panel and network selection. Just what I need!
I used the service for social networking. At first I bought it for a month, but now I will definitely renew it because the quality is really good! I am very glad that I finally found a really cool service!
Proxies do not fail, and at this price it is a great gift. I buy them when I need them, usually once every few months. There have been a few minor glitches but the support here is above all praise. Responsive, kind, understanding and fast. All issues were resolved promptly. It is very nice to work with true professionals.
Can't find your answer? Message us in live chat — real humans reply.
In the same place as everyone collecting from any major platform: bound by a contract term, not a statute. Yelp's terms prohibit automated access — unusually bluntly, even naming third-party scraping software — and that prohibition is real: it's the legal basis for the blocking this page describes, and for account termination if you collect while logged in. What it isn't is criminal law. US courts have generally treated collection of publicly accessible, logged-out data favorably (the hiQ v. LinkedIn line of cases is the usual citation), and a whole industry of local-SEO and reputation platforms visibly operates on Yelp data. The lines worth drawing yourself are sharper than the ToS: stay logged out (authenticated scraping converts a contract question into something worse); treat review text carefully — it's user-generated content that Yelp licenses, so analyze sentiment rather than republishing corpora; treat reviewer names and avatars as personal data and drop them unless your analysis needs them; and pace politely, because degrading the service is where abstract risk becomes concrete. For a commercial product built on the feed, one counsel review is standard diligence.
Probably not the one you're tuning. Yelp's protection is DataDome-class and layered, and each layer has a different tell. If challenges arrive on the first request from a fresh address, before any volume accumulates, the trigger is classification, not behavior — either the address range itself (hosting-provider origin scored down as a category) or your client's TLS handshake announcing an HTTP library instead of a browser; fix the client first (browser-grade TLS impersonation), and if clean dedicated addresses still get challenged on arrival, that target slice wants consumer-registered ISP addresses. If challenges arrive after a run of successes, that's the per-IP meter — and note it's endpoint-sensitive: search and category pages throttle several times harder than individual business pages, so a crawl that's fine on listings can trip on pagination. Also check what a “success” contains: Yelp sometimes serves 200-OK pages with the data quietly stripped, so validate content, not status codes. The general rule from a run of these diagnoses: first-request friction means change what you present; late friction means change how fast you ask.
Fewer than the scary per-IP numbers suggest, because listing work is shallow. The arithmetic: practitioners hold sustained Yelp collection at roughly 10–15 requests per hour per address — glacial by scraping standards — but a metro-area category sweep is not that many requests. One search page returns ten businesses; a category with 600 businesses in a metro is ~60 search pages plus 600 detail pages, call it 700 requests. Twenty addresses at 12 requests per hour clear it in about three hours; a 100-IP package — the size our packages start at — does it in under an hour, or covers five categories in the same afternoon. What changes the math is depth: review pagination multiplies per-business requests by the review-page count and is exactly the surface Yelp throttles hardest, so a reputation archive wants both a wider pool and more patience than a contact list. Practical sizing rule: count your request total, divide by 12 per IP-hour, and buy the width that fits your deadline — then keep 20% idle as rotation reserve for addresses that draw a challenge and need to sit out.
Collecting the contacts and contacting them are two different compliance questions, and the second one has nothing to do with proxies. The collection side is the comfortable half: a business's name, address, phone, and category on a public directory page is commercial information the business itself published to be found — it's about as far from sensitive personal data as scraped content gets. The outreach side is regulated on its own terms regardless of where the list came from: in the US, cold email to businesses is legal under CAN-SPAM if you identify yourself, include a physical address, and honor opt-outs; cold calling runs into TCPA the moment autodialers or prerecorded messages are involved, and B2B does not exempt you from the Do-Not-Call rules for individuals' numbers; texting is stricter still. Two practical notes from how lead-gen teams actually use this data: enrich before you outreach (review volume and rating trends tell you who's growing or hurting — better targeting beats bigger lists), and keep the provenance clean — a list you built from public pages is defensible, while a purchased list of unknown origin is someone else's compliance problem becoming yours.
A different proxy type may be a better fit for your use case. All products use the same Dashboard and support team.
An IP reserved exclusively for you, available from a single IP. Speeds of up to 500 Mbps per proxy.
Learn moreStatic ISP-registered residential IPs for use cases where network origin matters.
Learn morePay per request and access the full 100,000+ IP pool through a single gateway. Built for web scraping and API workloads.
Learn moreSOCKS5 with UDP support — for gaming, streaming, and VoIP.
Learn moreWe can sign a contract and provide all the documents your accounting team needs. Most business orders are activated within 24 hours of your request.