Live · Auto-tested every 30 minutes

Free Premium-Grade
Proxy List 2026

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.

HTTP
HTTPS
SOCKS5
SOCKS4
Working Now
all protocols
HTTP
HTTPS
SOCKS5
SOCKS4
Avg Latency
🔬Live connectivity test on every refresh
Sorted fastest-first by default
🚫Dead proxies auto-removed
📊Scored by win-rate + latency
🌐12 GitHub + 25 web sources
🔓100% free — no signup required
Loading proxy list…

What Is a Free Proxy List?

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.

Types of Proxies in Our List

HTTP Proxies

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 Proxies

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

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

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.

How to Use a Free Proxy

In Python (requests library)

import requests

proxies = {
    "http":  "http://IP:PORT",
    "https": "http://IP:PORT",
}
response = requests.get("https://example.com", proxies=proxies, timeout=10)
print(response.text)

For SOCKS5 in Python

proxies = {
    "http":  "socks5h://IP:PORT",
    "https": "socks5h://IP:PORT",
}
response = requests.get("https://example.com", proxies=proxies)

In curl

curl -x http://IP:PORT https://example.com
# For SOCKS5:
curl --socks5 IP:PORT https://example.com

Understanding Proxy Latency

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 vs Paid Proxies: What's the Difference?

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.

Frequently Asked Questions

Our proxy list is tested and refreshed automatically every 30 minutes. Only proxies that pass our live connectivity test are shown.
Most free proxies are "transparent" or "anonymous" level — they hide your IP from the destination site but may reveal that you're using a proxy. SOCKS5 proxies generally offer better anonymity than HTTP proxies.
Free proxies are shared across thousands of users and can go down at any time due to bandwidth limits or being blocked. Always test a proxy before relying on it for important tasks.
Yes, free proxies are commonly used for web scraping to rotate IP addresses and avoid rate limiting. However, many sites detect and block known proxy IPs. For large-scale scraping, consider rotating residential proxies from paid providers.
TXT (one IP:PORT per line, ready to paste into tools) or JSON with full metadata including type, latency, and score. Use the Export buttons above the table.
Yes! 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.