@Jolyne_AI: 做爬虫、搞数据采集,代理服务器几乎是标配,不然 IP 分分钟被封。更麻烦的是,网上一堆“免费代理”基本都失效了。 我在 GitHub 刚好挖到一个开源项目:Proxifly。它每 5 分钟自动抓取、更新并验证免费代理,把“可用”这件事做得…

X AI KOLs Timeline 工具

摘要

介绍了 GitHub 上的开源项目 Proxifly,每 5 分钟自动抓取并验证可用代理,覆盖 60+ 国家,支持多种协议,提供多种格式下载和 npm 安装。

做爬虫、搞数据采集,代理服务器几乎是标配,不然 IP 分分钟被封。更麻烦的是,网上一堆“免费代理”基本都失效了。 我在 GitHub 刚好挖到一个开源项目:Proxifly。它每 5 分钟自动抓取、更新并验证免费代理,把“可用”这件事做得很扎实,省下大量筛选和排查时间。 目前覆盖 60 个国家,提供 806 个可用代理,支持 HTTP、HTTPS、SOCKS4、SOCKS5 等协议;并按协议类型与国家/地区清晰分类,需要什么直接找,速度很快。 GitHub:http://github.com/proxifly/free-proxy-list… 官网:https://proxifly.dev 另外还做了去重,避免重复代理拖累体验;支持 JSON、TXT、CSV 三种格式下载,也能通过 npm 安装,直接在代码里调用。需要稳定免费代理池的话,可以去看看。
查看原文
查看缓存全文

缓存时间: 2026/06/29 08:25

做爬虫、搞数据采集,代理服务器几乎是标配,不然 IP 分分钟被封。更麻烦的是,网上一堆“免费代理”基本都失效了。

我在 GitHub 刚好挖到一个开源项目:Proxifly。它每 5 分钟自动抓取、更新并验证免费代理,把“可用”这件事做得很扎实,省下大量筛选和排查时间。

目前覆盖 60 个国家,提供 806 个可用代理,支持 HTTP、HTTPS、SOCKS4、SOCKS5 等协议;并按协议类型与国家/地区清晰分类,需要什么直接找,速度很快。

GitHub:http://github.com/proxifly/free-proxy-list… 官网:https://proxifly.dev

另外还做了去重,避免重复代理拖累体验;支持 JSON、TXT、CSV 三种格式下载,也能通过 npm 安装,直接在代码里调用。需要稳定免费代理池的话,可以去看看。


proxifly/free-proxy-list

Source: https://github.com/proxifly/free-proxy-list





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 3594 working proxies from 98 countries in the latest update (Jun 29, 2026, 07:18 AM UTC).

🦄 Features

  • ⚡ Extremely fast
  • 📝 Validated every 5 minutes
  • 📓 Sorted into HTTP, HTTPS, SOCKS4, & SOCKS5
  • 🌎 Contains proxies from 98 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 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

View Free Proxy List

💎 Download in our Free proxy scraper software

Windows MacOS Linux

🔗 Direct download links

Click on your preferred file format to get the updated list

TypeCount.json.txt.csv
All Proxies3594JSON FileText FileCSV File
HTTP Proxies1173JSON FileText FileCSV File
HTTPS Proxies1277JSON FileText FileCSV File
SOCKS4 Proxies765JSON FileText FileCSV File
SOCKS5 Proxies379JSON FileText FileCSV File
U.S. proxies (view more countries)519JSON FileText FileCSV File

Other sorted proxies

🙌 Use the Proxifly NPM module

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 with cURL

Fetch the latest proxy list with the following command:

All proxies

curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/all/data.txt -o all.txt

HTTP proxies

curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.txt -o http.txt

SOCKS4 proxies

curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks4/data.txt -o socks4.txt

SOCKS5 proxies

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)

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

🧸 Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.

相似文章

@Jolyne_AI: 又在 GitHub 挖到一款高性能爬虫/抓取利器:AnyCrawl,把数据采集这件事做得更省心、更高效。 它把 Cheerio、Playwright、Puppeteer 三种引擎打包到一起:静态页面秒解析,复杂 JavaScript 渲染…

X AI KOLs Timeline

AnyCrawl 是一款高性能开源爬虫/抓取工具,集成了 Cheerio、Playwright、Puppeteer 三种引擎,支持静态解析与 JS 渲染、SERP 批量抓取、站点级爬虫、多线程/多进程并发、代理支持,并针对 LLM 数据采集优化输出格式。

@CycleDecoded: 别再花大价钱买那些破爬虫软件交智商税了!这几天有个开源工具简直离谱,直接把全网社交平台的数据底裤都给扒了,搞流量矩阵和数据变现的饭碗真危了! 这就是 GitHub 上狂砍 5.4 万+ 星标的超神开源项目 MediaCrawler。大白话…

X AI KOLs Timeline

MediaCrawler 是一个 GitHub 上 5.4 万+ Star 的开源多平台社交媒体爬虫工具,支持小红书、抖音、B站等 7 大平台的数据采集,具备多账号、IP 代理、断点续爬和 AI 集成等特性。