Sourced from 37 trusted providers — GitHub repositories + 25 web scrapers. Every proxy is tested for connectivity & latency before being listed. Dead proxies are removed instantly. No junk.
A free proxy list is a collection of publicly available proxy server IP addresses and ports that anyone can use to route their internet traffic through a different server. Each proxy in our list has been automatically tested for connectivity and speed before being published here.
Our proxy list is sourced from trusted open-source GitHub repositories including TheSpeedX, monosans, clarketm, and proxifly — all of which maintain regularly updated lists of working free proxies. We test every proxy against a live endpoint and only display those that successfully respond.
HTTP proxies work with standard web traffic over port 80. They intercept HTTP requests and forward them to the destination server. Best for: basic web browsing, accessing websites, scraping HTTP pages.
HTTPS (SSL) proxies support encrypted traffic over port 443. They can handle both HTTP and HTTPS connections, making them suitable for secure websites and APIs. Best for: accessing HTTPS sites, secure connections.
SOCKS4 proxies operate at the transport layer and support TCP connections — lightweight, fast, and widely compatible with scraping tools and bots. Unlike SOCKS5, they don't support UDP or authentication, but they're excellent for simple IP rotation tasks. Best for: scrapers, bots, automated tools.
SOCKS5 proxies are the most versatile — they work at a lower level than HTTP proxies and support any protocol including TCP, UDP, and DNS. They offer better anonymity and can handle any type of traffic. Best for: torrenting, gaming, apps that aren't browser-based.
import requests
proxies = {
"http": "http://IP:PORT",
"https": "http://IP:PORT",
}
response = requests.get("https://example.com", proxies=proxies, timeout=10)
print(response.text)
proxies = {
"http": "socks5h://IP:PORT",
"https": "socks5h://IP:PORT",
}
response = requests.get("https://example.com", proxies=proxies)
curl -x http://IP:PORT https://example.com # For SOCKS5: curl --socks5 IP:PORT https://example.com
Latency is the time (in milliseconds) it takes for a request to travel from our test server to the proxy and back. Lower is better:
Free proxies like those in this list are open and publicly shared. They work well for casual use, testing, and scraping non-sensitive sites. However, they can be unreliable, slow, and may not support all protocols. For production use cases requiring reliability and anonymity, a paid dedicated proxy service is recommended.
GET /api/proxy-list?type=all&limit=100&format=json — or format=txt for plain text. Filter by type: type=http, type=https, type=socks4, or type=socks5.