Site | NPM Module | GitHub Repo

# 🌎 Proxifly's free proxy list Every 5 minutes, **Proxifly** fetches fresh proxiesβ€”including **HTTP**, **HTTPS**, **SOCKS4**, and **SOCKS5** proxiesβ€”from around the web. > Proxifly found **2389** working proxies from **104** countries in the latest update (**Aug 18, 2026, 11:33 AM UTC**). ## πŸ¦„ Features * ⚑ Extremely fast * πŸ“ Validated every 5 minutes * πŸ““ Sorted into **HTTP**, **HTTPS**, **SOCKS4**, & **SOCKS5** * 🌎 Contains proxies from **104 countries** * πŸ“¦ Available in **.json**, **.txt**, & **.csv** formats * πŸ” Supports HTTPS connection * 😊 No duplicates ## πŸ“¦ How do I use the proxies? You have a few different options for getting the proxies: πŸ›‘ Please follow the [GitHub Acceptable Use Policy](https://docs.github.com/en/site-policy/acceptable-use-policies/github-acceptable-use-policies) 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](https://proxifly.dev/tools/proxy-list) [![View Free Proxy List](https://flat.badgen.net/badge/label/Download%20from%20Website?icon=chrome&color=4285F4&label=&labelColor=4285F4&scale=1.5)](https://proxifly.dev/tools/proxy-list) ### πŸ’Ž Download in our [Free proxy scraper software](https://proxifly.dev/download) [![Windows](https://flat.badgen.net/badge/label/Windows?icon=windows&color=blue&label=&labelColor=blue&scale=1.5)](https://proxifly.dev/download?download=windows) [![MacOS](https://flat.badgen.net/badge/label/MacOS?icon=apple&color=black&label=&labelColor=black&scale=1.5)](https://proxifly.dev/download?download=macos) [![Linux](https://flat.badgen.net/badge/label/Linux?icon=terminal&color=orange&label=&labelColor=orange&scale=1.5)](https://proxifly.dev/download?download=linux) ### πŸ”— Direct download links Click on your preferred file format to get the updated list |Type|Count|.json|.txt|.csv| |----|-----|-----|----|----| |All Proxies|2389|[JSON File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/all/data.json)|[Text File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/all/data.txt)|[CSV File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/all/data.csv)| |HTTP Proxies|599|[JSON File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.json)|[Text File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.txt)|[CSV File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.csv)| |HTTPS Proxies|1356|[JSON File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/https/data.json)|[Text File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/https/data.txt)|[CSV File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/https/data.csv)| |SOCKS4 Proxies|335|[JSON File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks4/data.json)|[Text File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks4/data.txt)|[CSV File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks4/data.csv)| |SOCKS5 Proxies|99|[JSON File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks5/data.json)|[Text File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks5/data.txt)|[CSV File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks5/data.csv)| |U.S. proxies ([view more countries](https://github.com/proxifly/free-proxy-list/tree/main/proxies/countries))|727|[JSON File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/countries/US/data.json)|[Text File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/countries/US/data.txt)|[CSV File](https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/countries/US/data.csv)| #### Other sorted proxies * [🌎 Get proxies by country](https://github.com/proxifly/free-proxy-list/tree/main/proxies/countries) ### πŸ™Œ Use the Proxifly NPM module Easily fetch updated proxies in your application with the official **Proxifly NPM module**. ```shell # Run this command to install the module: npm install proxifly ``` ```js // ESM import Proxifly from 'proxifly'; // CommonJS const Proxifly = require('proxifly'); ``` ```js const proxifly = new Proxifly({ // Not required, but having one removes limits (get your key at https://proxifly.dev). apiKey: 'your-api-key' }); ``` ```js // 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 with cURL Fetch the latest proxy list with the following command: #### All proxies ```shell curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/all/data.txt -o all.txt ``` #### HTTP proxies ```shell curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.txt -o http.txt ``` #### SOCKS4 proxies ```shell curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks4/data.txt -o socks4.txt ``` #### SOCKS5 proxies ```shell curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks5/data.txt -o socks5.txt ``` #### U.S. proxies ([view more countries](https://github.com/proxifly/free-proxy-list/tree/main/proxies/countries)) ```shell curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/countries/US/data.txt -o socks5.txt ``` ## ✨ Star history [![Star History Chart](https://api.star-history.com/chart?repos=proxifly/free-proxy-list&type=date&legend=top-left&sealed_token=NE6Wt65Ig91kaaQrtOqJM1TvwhF5oQKEPv9EyeG3bnNlTgoVQaWHS1E2r8poayVJ327LRGtiLq4hBQUfJEjUr55Z1V1vOdG005ZhjvSCWPupb5HqG8LZCg)](https://www.star-history.com/?repos=proxifly%2Ffree-proxy-list&type=date&legend=top-left) ## 🧸 Contributing Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.