20 IPs for 60 minutes on the country-mix package. No card required.
Start free trialA proxy API service included with every plan — export lists in your format, update whitelists, and renew from a script instead of the Dashboard.
The API is a control plane for your account: proxy traffic itself flows through the proxy addresses, while everything around that traffic runs over REST calls. You create an API key in the Dashboard, and your scripts take over the routine — exporting the current list, updating IP whitelisting rules, renewing plans, purchasing new packages. All datacenter and ISP packages here are unlimited proxy plans with API access included, so management automation isn't a tier you pay extra for.
The call that earns its keep fastest is the list export. You define the layout once — IP:port, login:password@IP:port, or a builder string with any field order and delimiter your software expects — and every export comes back ready to load. When your proxy list refreshes, the same call returns the updated addresses, so your scraper picks up new IPs on its next run instead of waiting for someone to rebuild configs by hand.
The documentation is public, so you can check that the endpoints cover your workflow before paying — the link and key details are in the first question below. Product specs are in the adjacent panel; pricing for your volume is in the calculator above.
Four infrastructure types — and the use cases each one fits best.
| This page 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 |
The examples below show proxy connections; the PapaProxy API card in the same section covers plan management and list exports.
# 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.
Literally everything is great. Only here I found cheap proxies that work to perfection. Support is also on the level, responds very quickly. Everything suits me.
I use it for contextual advertisement. They are very good proxies for parsing Yandex. I bought them upon recommendation from this website with 5% discount. Everything works great! Thank you!
KeyCollector started to ban free proxies. So I started looking for paid proxies. I compared prices and chose this service. I was looking for IPv4 proxies, they are a bit cheaper than the competitors. In general, I like everything, if there are any questions, the support immediately solves them. Very convenient!
Been using this service for a few months now and haven't had any problems in that time. It's a great service that works perfectly. In parallel, I tried other services where proxies can be cleaner, but their prices are 2-3 times higher. In this case, the price corresponds to the quality, proxies do well, unlike many others.
Can't find your answer? Message us in live chat — real humans reply.
Create one in your Dashboard — it takes a couple of clicks after you sign in. The key and the API's base URL are shown there; use them in your scripts or automation tools. Authentication details and request examples are documented at api.papaproxy.net/docs.
Everything operates on the package, not the address. One API call returns the full list — 10,000 IPs export the same way 100 do; IP whitelisting is configured once and covers every address in the package; a refresh swaps out addresses server-side and the next export already contains the replacements. The piece you own is distribution: your software decides which slice of the list goes to which worker or project. A practical pattern is to fetch the list at the start of every run rather than on a schedule — that way a refresh can never leave a long-running job holding retired addresses.
No — the words are nearly identical, the products aren't, and search results mix them constantly. An API proxy or API gateway (Apigee, Kong, AWS API Gateway) sits in front of your own backend and manages traffic coming in to your API: routing, authentication, rate limiting. What this page describes is the reverse pairing: a management API for a proxy service — REST endpoints for controlling your proxy account programmatically, plus the proxy addresses themselves for sending traffic out. If you landed here looking for infrastructure to publish your own API behind, you want a gateway product. If you need outbound IP addresses your code can manage without a human in the Dashboard, you're in the right place.
Yes, and it's one of the most common setups here. API traffic is ordinary HTTP, so proxies for API requests work exactly like proxies for web pages: pass the proxy endpoint URL — login:password@IP:port — to your HTTP client, and calls to the third-party service leave from the proxy address. The usual reasons are per-IP rate limits (a package spreads your calls across many addresses, so no single IP hits the ceiling) and geo-restricted APIs that only answer from specific countries. One caution: distributing requests to evade a per-account quota — as opposed to a per-IP limit — usually violates the target service's terms, and that's on you, not on the proxy.
Four things, checkable before you pay. Documentation that's public — if the docs sit behind a signup wall, you can't verify the API covers your workflow until you've already committed. Coverage of the write operations, not just reads: exporting a list is table stakes; updating whitelisting rules and renewing plans from a script is what actually removes the human from the loop. Export flexibility — an API that returns one hardcoded format still leaves you writing a converter. And pricing: at some providers API access is an enterprise tier; here it's included with every plan. A five-minute read of a provider's API docs against that list tells you more than any comparison article.
Yes. IP whitelisting is required on every plan, and you can change whitelisted addresses in the Dashboard or through the API. If your provider assigns a new public IP, one API call restores access; you can also run that update from a script on the server or router. See the FAQ on working with a dynamic IP.
Yes — rotating plans are managed through the same API and MCP endpoints. There is no fixed IP list to export; billing is request-based, and the exit IP rotates on every request. For datacenter packages and static ISP plans, the API also handles list exports and whitelist updates.
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.