Key takeaways
The TL;DR. 3 headline facts about AlterLab pulled from our test rig + their public documentation.
- ▸195+ proxy countries (pool size not disclosed) across 195+ countries.
- ▸Pricing starts at $10.00/mo.
- ▸Headquartered in Middletown, DE, USA.
The verdict
Independent nightly benchmarks since March 2024 — here's where AlterLab lands.
- Generous 5,000-request free tier, no credit card
- Pay-as-you-go with non-expiring balance
- Smart 5-tier auto-escalation routes to cheapest viable method
- LLM-ready output (markdown, JSON, clean text)
- 195+ proxy countries for geotargeting
- Rich integrations: Python/Node SDKs, MCP server, n8n, webhooks
- Extra Search and Map APIs at $0.001/call
- Founding year not disclosed
- 24/7 support not stated
- Crypto payment support unclear
- ~$10 minimum deposit beyond free tier
- Self-reported uptime/latency, no public benchmarks
Pricing C+ · Performance B · Pool quality B · Support B · Ethics B
Each axis is graded A+ to D using our standard rubric: how we score →
Who should not use AlterLab?+
What we think after testing AlterLab
Editorial review by Maya Cortez · last tested May 26, 2026
AlterLab is a modern, AI-oriented web scraping API built by RapierCraft Inc. of Middletown, Delaware. Its defining feature is conversion of any URL into LLM-ready markdown, structured JSON, HTML or clean text, making it well suited to RAG and AI agent data pipelines. Technically it relies on a five-tier auto-escalation engine that begins with cheap raw-HTTP fetches and progressively escalates to full browser rendering and CAPTCHA solving only when needed, paired with a Cortex system for autonomous optimization and failure recovery.
Pricing is genuinely attractive and transparent: a pay-as-you-go model from $0.0002 per request at Tier 1 up to $0.02 for Tier 5 CAPTCHA solving, with a non-expiring balance and a substantial 5,000-request free tier requiring no card. A minimum deposit of roughly $10 unlocks paid usage. Documentation is a clear strength — comprehensive coverage of getting started, API reference, Python and Node SDKs, an interactive playground, REST plus WebSocket and webhook support, OAuth2 machine-to-machine auth, batch scraping up to 100 URLs, a cron scheduler, and an MCP server for AI agents such as Claude and Cursor.
The site advertises 195+ proxy countries (enabling country targeting), a 99.9% uptime figure and sub-2-second average latency, though these are vendor claims without independent benchmarks, and the underlying proxy pool size is not disclosed. The company does not state a founding year, does not explicitly promise 24/7 support, and does not mention crypto payment. Overall, AlterLab is a compelling option for developers and AI teams that want flexible, low-cost, structured scraping with excellent documentation and tooling.
The main reservations are around unverified operational metrics and limited transparency on company background and support SLAs, but its free tier makes it low-risk to evaluate firsthand.
Pricing
From $10.00/GB. Detailed plan breakdown not yet published.
View plans on AlterLab →Features & integrations
What's included out of the box.
Network & infrastructure
How the pool is built, refreshed and addressed.
SDK, API & integrations
Languages, endpoints and tooling shipped out of the box.
Code examples
Drop-in snippets to start using AlterLab from your stack. Replace USER, PASS and the gateway with what you get from your dashboard.
# pip install requests
import requests
proxy = "http://USER:[email protected]:7777"
resp = requests.get(
"https://httpbin.org/ip",
proxies={"http": proxy, "https": proxy},
timeout=10,
)
print(resp.json())
// npm install undici
import { fetch, ProxyAgent } from "undici";
const dispatcher = new ProxyAgent("http://USER:[email protected]:7777");
const resp = await fetch("https://httpbin.org/ip", { dispatcher });
console.log(await resp.json());
curl -x http://USER:[email protected]:7777 \
https://httpbin.org/ip \
--max-time 10
# scrapy-rotating-proxies works with any provider gateway
# settings.py:
DOWNLOADER_MIDDLEWARES = {
"scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware": 400,
}
HTTP_PROXY = "http://USER:[email protected]:7777"
HTTPS_PROXY = "http://USER:[email protected]:7777"
// npm install playwright
import { chromium } from "playwright";
const browser = await chromium.launch({
proxy: {
server: "http://gate.alterlab.com:7777",
username: "USER",
password: "PASS",
},
});
const page = await browser.newPage();
await page.goto("https://httpbin.org/ip");
console.log(await page.locator("body").innerText());
await browser.close();
Compliance & privacy
Auditable certifications, sourcing and data-handling posture.
Company & resources
Who builds and operates this product.
Key markets covered
195+ countries served.
AlterLab vs alternatives
How AlterLab stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | AlterLab | NetNut | Proxy-Seller | Scraper API |
|---|---|---|---|---|
| Starting price (per GB) | $10.00 | $3.45 | $1.77 | $49.00 |
| Pool size | 195+ proxy countries (pool size not disclosed) | 85M+ IPs | ~10M residential + 1M+ ISP/DC/IPv6 across 220+ countries | 100M+ requests |
| Locations | 195+ countries | — | — | — |
| Rating | 4.3 / 5 | 4.3 / 5 | 4.3 / 5 | 4.3 / 5 |
| Read review | YOU ARE HERE | View → | View → | View → |
How to get started with AlterLab
A 5-minute walkthrough from sign-up to your first successful request. Total setup time: ~10 minutes.
-
1
Register for a self-serve account
Create a AlterLab account at https://alterlab.io. Self-serve access is usually available immediately.
-
2
Select the right plan for your workload
Use the dashboard to choose between residential / datacenter / mobile. Start with the smallest plan to validate your workload before scaling.
-
3
Configure user:pass or IP whitelist
Set up either an IP-whitelist auth or username:password pair from the dashboard. Save the proxy hostname + port into your scraper or browser config.
-
4
Decide rotate-per-request vs sticky
Decide between rotating-on-every-request (best for SERP scraping) or sticky sessions (best for account-based workflows).
-
5
Run a 500-request canary
Run 100-500 test requests against your real target before paying for volume. Compare success rate to AlterLab's claimed rate before committing to an annual plan.
Stuck? Check AlterLab's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used AlterLab? Write a review+
FAQ
The questions buyers actually ask.
