MIX-Basic
8,000 IPs · 500–900 threads
from $50 a month
The starter package for one collection scenario. Take it when your scraper runs on a schedule rather than around the clock.
MIX pools up to 25,000 IPs and up to 9,900 concurrent threads. Unlimited traffic, HTTP(S) and SOCKS5 on one port, access by IP with no login or password. A test hour costs $1.

Pick a package, then move the period and thread sliders. Threads equal the number of concurrent requests your scraper sends through the proxies.
MIX-Basic covers one scraper: pull a store catalogue, grab competitor prices, export listings from a classifieds site. A pool of 8,000 addresses and 500 threads keeps collection steady with no pauses to swap IPs. When threads run short, add them in steps of 50 on any period from a week.
MIX-Business is built for Google and Yandex SERP scraping and for several projects at once. 16,000 addresses spread the load so each IP carries fewer requests and captchas show up less often. A thousand threads to start, up to 1,400 with add-ons.
MIX-Elite is made for round-the-clock price monitoring on marketplaces, review collection and industrial-scale scraping. The widest pool at 25,000 addresses and a ceiling of 9,900 threads: no other package gets near those numbers.
A thread is one simultaneous connection. More threads — more done in the same time.
$50 for a monthno extra charge for threads
save $250 vs. dailyA thread is one simultaneous connection. More threads — more done in the same time.
$100 for a monthno extra charge for threads
save $350 vs. dailyA thread is one simultaneous connection. More threads — more done in the same time.
$150 for a monthno extra charge for threads
save $450 vs. dailyAccess works by whitelist, up to 10 addresses per account. No login or password needed.
It returns a plain text file, one proxy per line: address and port. About ten gateway addresses, thousands of ports, and every port is a separate proxy. The same URL ending in .csv returns the list with countries.
A-Parser and ZennoPoster re-read it on their own. For Scrapy and custom code, reload the list with a script every 10 minutes, see the example below.
500 for Basic, 1,000 for Business, 1,500 for Elite. Extra threads are sold on periods from a week.
SOCKS5 carries any TCP traffic; HTTP(S) fits tools without SOCKS support. Both are available on the same port.
This is how the list loads in Python. Replace PROXY_LIST_URL_FROM_DASHBOARD with the URL from your dashboard and leave the rest as is.
import random, time, requests
PROXY_LIST_URL = "PROXY_LIST_URL_FROM_DASHBOARD"
REFRESH_SEC = 600
_pool, _loaded = [], 0
def pool():
global _pool, _loaded
if time.time() - _loaded > REFRESH_SEC:
text = requests.get(PROXY_LIST_URL, timeout=15).text
_pool = [line.strip() for line in text.splitlines() if ":" in line]
_loaded = time.time()
return _pool
def fetch(url, tries=3):
for _ in range(tries):
proxy = random.choice(pool())
try:
return requests.get(url, timeout=15,
proxies={"http": f"socks5h://{proxy}", "https": f"socks5h://{proxy}"})
except requests.RequestException:
continue
return None
8,000 IPs · 500–900 threads
from $50 a month
The starter package for one collection scenario. Take it when your scraper runs on a schedule rather than around the clock.
16,000 IPs · 1,000–1,400 threads
from $100 a month
A package for teams and agencies: two or three scrapers on one pool, search positions and competitor prices on a single plan.
25,000 IPs · 1,500–9,900 threads
from $150 a month
A package for non-stop collection: the largest address reserve, with threads purchasable up to 9,900.
import csv, io, requests
CSV_URL = "PROXY_LIST_URL_FROM_DASHBOARD.csv"
COUNTRIES = {"in", "id"}
OUT_FILE = "proxies_in_id.txt"
text = requests.get(CSV_URL, timeout=15).text
rows = csv.DictReader(io.StringIO(text), delimiter=";")
picked = [f"{r['ip']}:{r['port']}" for r in rows if r["country"].lower() in COUNTRIES]
with open(OUT_FILE, "w") as f:
f.write("\n".join(picked) + "\n")
print(f"{len(picked)} proxies saved to {OUT_FILE}")
The rest of the answers live in the general FAQ, and all plans are on the home page.
Test the pool with your own scraper, then pick a period. On packages from 3 days the remainder goes back to your balance.
Test proxies for $1