ClearProxy is a fast, modern CLI and SDK for checking, validating proxy lists using the ClearProxy.io API.
Built for developers and automation environments that need accurate proxy health results in seconds.
# Install CLI globally
npm install -g clearproxy
# Or install SDK for Node.js usage
npm install clearproxyclearproxy set-key clearpx_yourkeyclearproxy meclearproxy check proxies.txtclearproxy check proxies.txtclearproxy check proxies.txt --region sg1 --type socks5clearproxy check proxies.txt --format txt --out working.txt --simpleclearproxy check 1.1.1.1:8080 8.8.8.8:3128Note
For more information about the CLI, run clearproxy check --help to see all available options.
clearproxy regionsimport { ClearProxy } from "clearproxy";
import fs from "fs";
const client = new ClearProxy("clearpx_yourkey");
(async () => {
const result = await client.check("proxies.txt", {
region: "us1",
timeout: 4000,
type: "http"
});
console.log("Summary:", result.summary);
console.log("Working:", result.working.length);
// Save to file
fs.writeFileSync("working.txt", client.export(result.working, "txt", true));
})();- Website: https://clearproxy.io
- Docs: https://docs.clearproxy.io
MIT License © 2025 ClearProxy