Site | NPM Module | GitHub Repo
Every 5 minutes, Proxifly fetches fresh proxies—including HTTP, HTTPS, SOCKS4, and SOCKS5 proxies—from around the web.
Proxifly found 5154 working proxies from 73 countries in the latest update (Mar 24, 2026, 11:57 PM UTC).
- ⚡ Extremely fast
- 📝 Validated every 5 minutes
- 📓 Sorted into HTTP, HTTPS, SOCKS4, & SOCKS5
- 🌎 Contains proxies from 73 countries
- 📦 Available in .json, .txt, & .csv formats
- 🔐 Supports HTTPS connection
- 😊 No duplicates
You have a few different options for getting the proxies:
🛑 Please follow the GitHub Acceptable Use Policy when using this project. You should use these proxies responsibly, without abusing them, and without intent to commit illegal activity.
👑 Download from our website: Free proxy list
💎 Download in our Free proxy scraper software
Click on your preferred file format to get the updated list
| Type | Count | .json | .txt | .csv |
|---|---|---|---|---|
| All Proxies | 5154 | JSON File | Text File | CSV File |
| HTTP Proxies | 1085 | JSON File | Text File | CSV File |
| HTTPS Proxies | 721 | JSON File | Text File | CSV File |
| SOCKS4 Proxies | 738 | JSON File | Text File | CSV File |
| SOCKS5 Proxies | 2610 | JSON File | Text File | CSV File |
| U.S. proxies (view more countries) | 1310 | JSON File | Text File | CSV File |
Easily fetch updated proxies in your application with the official Proxifly NPM module.
# Run this command to install the module:
npm install proxifly// ESM
import Proxifly from 'proxifly';
// CommonJS
const Proxifly = require('proxifly');const proxifly = new Proxifly({
// Not required, but having one removes limits (get your key at https://proxifly.dev).
apiKey: 'your-api-key'
});// Fetch proxies with your desired options:
proxifly.getProxy({
protocol: 'http', // http | socks4 | socks5
anonymity: 'elite', // transparent | anonymous | elite
country: 'US', // ISO country code
https: true, // true | false
format: 'json', // json | text
quantity: 1, // 1 - 20
})
.then(proxy => {
console.log('Proxies:', proxy);
})
.catch(e => {
console.error(e);
})Fetch the latest proxy list with the following command:
curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/all/data.txt -o all.txtcurl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.txt -o http.txtcurl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks4/data.txt -o socks4.txtcurl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks5/data.txt -o socks5.txtU.S. proxies (view more countries)
curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/countries/US/data.txt -o socks5.txtContributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.