Proxy guide

Proxy API for Web Scraping

A proxy API lets scraping tools fetch fresh proxy lists without scraping proxy-list pages manually. Proxy11 supports simple formats for scripts and SDKs for Python and Node.js.

SDKs

Example

GET https://proxy11.com/api/proxy.json?key=YOUR_API_KEY&type=anonymous&limit=50
[
  {
    "ip": "62.255.12.3",
    "port": "80",
    "country": "United Kingdom",
    "country_code": "gb",
    "time": 0.44,
    "type": 1
  }
]

Practical Tips

  • Use JSON when your scraper needs country, speed, and anonymity metadata.
  • Use TXT when another tool only accepts ip:port lists.
  • Respect target websites, robots rules, and rate limits.

Proxy API

Fetch proxy lists in TXT, JSON, CSV, or XML formats.

API documentation

Python SDK

Install with pip and use rotators or requests sessions.

Python GitHub repo

Node.js SDK

Install with npm and use async proxy helpers.

Node.js GitHub repo