Use Proxy11 from Python, Node.js, or the raw HTTP API.
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)
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 });
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
ip:port files for other tools.