Proxy11 SDKs

Use Proxy11 from Python, Node.js, or the raw HTTP API.

API Reference
Python
pip install proxy11
Node.js
npm install proxy11
HTTP API
TXT, JSON, CSV, XML

Python SDK

GitHub
pip install proxy11
from proxy11 import ProxyClient

client = ProxyClient("YOUR_API_KEY")
proxies = client.get(limit=50, country="us")
proxy = client.random(proxy_type="anonymous")
proxy_list = client.as_list(limit=100)

Node.js SDK

GitHub
npm install proxy11
const { ProxyClient } = require("proxy11");

const client = new ProxyClient("YOUR_API_KEY");
const proxies = await client.get({ limit: 50, country: "us" });
const proxy = await client.random({ proxyType: "anonymous" });
const list = await client.asList({ limit: 100 });

Raw API

If you do not need an SDK, call the API directly and choose the response format by extension.

https://proxy11.com/api/proxy.json?key=YOUR_API_KEY&limit=50&country=us&type=anonymous

Common Uses

  • Fetch fresh proxy lists for scripts and backend jobs.
  • Filter by country, port, response speed, or anonymity type.
  • Rotate through proxies in scraping and automation workflows.
  • Export simple ip:port files for other tools.