Updated every 30 minutes

Free Proxy List 2026

Tested and verified HTTP, HTTPS and SOCKS5 proxies โ€” updated automatically every 30 minutes. Filter, sort, copy or export in TXT/JSON format. 100% free.

โ€”
Working Proxies
โ€”
HTTP / HTTPS
โ€”
SOCKS5
โ€”
SOCKS4
โ€”
Avg Latency ms
โ„น๏ธ Proxies are sourced from GitHub repositories and 25 free proxy sites, automatically tested for connectivity. Use responsibly and in compliance with applicable laws.
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.

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 your browser

Go to your browser's network settings and enter the proxy IP and port. In Chrome: Settings โ†’ System โ†’ Open proxy settings. In Firefox: Settings โ†’ Network Settings โ†’ Manual proxy configuration.

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 come with limitations: 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. The "Updated" badge at the top of the page indicates it's actively maintained. 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 in our list generally offer better anonymity than HTTP proxies. For full anonymity, use a VPN or premium proxy service.
Free proxies are shared across thousands of users. They can go down at any time due to bandwidth limits, the server being shut down, or being blocked by sites. 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 using rotating residential proxies from paid providers.
You can export the proxy list as plain TXT (one IP:PORT per line, ready to paste into tools) or as JSON with full metadata including type, latency, and score. Use the Export buttons above the table.
Yes! Use our public API endpoint: GET /api/proxy-list?type=all&limit=100&format=json โ€” or format=txt for plain text. You can filter by type: type=http, type=https, or type=socks5.