Live public proxy dataset
Free Proxy List
Live free proxy server list with HTTP, HTTPS, SOCKS4 and SOCKS5 endpoints re-verified every 5 minutes. Download TXT, CSV or JSON. No signup.
- live endpoints
- 7,554live endpoints
- countries in view
- 131countries in view
- refresh cadence
- 5 minrefresh cadence
Live proxy list
Live free proxy servers
Re-verified every 5 minutes
Showing 1–10 of 7,554
This table scrolls horizontally when all columns do not fit.
Understanding proxies
What is a free proxy server?
How an IP address and port route a request, what the destination can observe, and what a public proxy cannot protect.
A free proxy server sits between your client and a destination. You connect to its IP address and port, and it forwards the request from its own network address. The destination usually sees the proxy's IP for that request instead of your direct connection.
A proxy does not make you anonymous, change every location signal, encrypt every protocol, or authorize access. Public endpoints can be unstable, and their operators may inspect or log traffic. Never send credentials, payment details, or other sensitive data through an operator you do not trust.
- Your Device
- Proxy Server
- Internet
The destination sees the proxy’s network IP for that request. Headers and other signals can still identify you.
Protocols
HTTP, HTTPS, SOCKS4 and SOCKS5 proxy protocols
Choose a protocol based on the traffic your client sends, its DNS needs, and whether it must create an HTTPS tunnel.
HTTP proxies
Forward plain HTTP requests at the application layer. They are simple to configure, but the proxy can read unencrypted traffic, so never send sensitive data.
HTTPS proxies
Use the HTTP CONNECT method to relay a TLS connection. Your client must still validate the destination certificate. A public operator remains unsuitable for sensitive activity.
SOCKS4 proxies
Relay TCP with a small handshake but no built-in authentication or UDP support. SOCKS4a adds remote hostname resolution for clients that implement it.
SOCKS5 proxies
Can relay TCP and, when both sides support it, UDP. SOCKS5 supports authentication and remote DNS, but it does not encrypt application traffic by itself.
Anonymity
Elite, anonymous and transparent proxy levels
These labels summarize what Databay's latest header probe observed. They do not measure operator trust, encryption, DNS leaks, browser fingerprinting, cookies, or account identity.
Elite
01- Your IP
- Hidden
- Proxy headers
- Stripped
The probe observed neither the tested client IP nor common forwarding markers. A destination may still detect proxy use through network, protocol, browser, account, or behavior signals.
Best for: Header-disclosure testing
View elite listAnonymous
02- Your IP
- Hidden
- Proxy headers
- May be disclosed
The probe did not observe the tested client IP, but it did observe a marker indicating that a proxy relayed the request.
Best for: General header-behavior testing
View anonymous listTransparent
03- Your IP
- Visible
- Proxy headers
- Explicit
The probe observed the tested client IP in a forwarded header. This class can support caching or request tests, but it provides no header-level anonymity.
Best for: Caching and request-header testing
View transparent listUse cases
Common use cases for free proxies
Practical, low-risk ways to test proxy configuration, network behavior, and permitted public content.
Regional QA
Compare permitted public content from another network region. Account, device, language, and personalization can still affect the result.
Public-data sampling
Collect permitted public data at a rate the publisher allows. A proxy does not override terms, robots controls, authentication, or rate limits.
Network-origin checks
Confirm which public IP a test service receives and compare it with a direct connection. Treat the result as a network test, not proof of anonymity.
Client integration tests
Test proxy parsing, connection errors, timeouts, retries, and protocol support before connecting an application to managed infrastructure.
Configuration practice
Learn how browsers, cURL, and code libraries accept an IP address, port, protocol, and optional credentials without using production data.
Verification
How Databay verifies free proxy servers
See how public candidates are tested, scored, refreshed, and removed from the live list.

Probe pipeline maintained by Databay engineering. Methodology written by Robert Smith, software engineer and web scraping specialist.
Methodology and sourcing ethics: databay.com/trust
Candidates are collected from public proxy sources and tested before publication. An IP address and port appear only after the checker records a successful connection.
Probe pipeline
Candidates are checked on a rolling five-minute schedule. The checker attempts a TCP connection, runs the applicable HTTP and HTTPS requests, records the successful round-trip time, and observes selected response headers.
What the columns mean
- Latency is the round-trip time of the latest successful checker request. Fast is below 500 ms, Medium is 500 to 1,499 ms, and Slow is 1,500 ms or more.
- Uptime is the percentage of recorded checks that succeeded over the lifetime of the IP address and port pair.
- Reachability probe records that the upstream checker received its expected response for that route and time. It does not authorize automated queries, certify reputation, or predict a later response.
HTTPS states
HTTPS support is reported in three states:
- Strict: the checker created an HTTPS tunnel and validated the destination certificate chain.
- Loose: the HTTPS request succeeded only when certificate validation was disabled.
- None: the checker did not complete an HTTPS tunnel through this endpoint.
Expiry policy
The primary pool includes endpoints with a successful check in the past six hours. If fewer than 50 endpoints qualify, the service can fall back to successful checks from the past 24 hours. The last-checked value remains visible so you can judge freshness, and older rows are excluded.
Reliability
How the free proxy list stays current
Use the latest check, latency, lifetime uptime, and HTTPS result to choose an endpoint for low-risk testing.
Connection tested
Each entry must accept a TCP connection and complete the applicable HTTP or HTTPS check before publication.
Freshness shown6 hr primary
The main pool uses successful checks from the past six hours. A low-inventory fallback can include rows up to 24 hours old.
Reachability evidence
A limited checker probe records its observed response. It does not authorize automated queries or predict later access.
HTTPS result
Strict, Loose, or None reports whether the checker created an HTTPS tunnel and validated its certificate chain.
Distribution
Live proxy distribution
Browse the current pool by protocol, observed anonymity level, or country. Each link opens a dedicated proxy list.
Comparison
What this free proxy list includes
Compare Databay's refresh schedule, formats, filtered views, verification fields, and data license with common list types.
The Databay column describes this page and its current server-rendered counts. Other services vary, so their documentation and terms remain the source of truth.
Quickstart
How to use a free proxy server
Most tools accept a proxy in the format host:port or host:port:username:password. Copy the IP and port from this list, then configure your client:
curl -x http://IP:PORT https://target.comimport requests
proxies = {"http": "http://IP:PORT"}
requests.get("https://target.com", proxies=proxies)Settings > Network > Proxy Configuration
Enter IP, Port, and select HTTP, SOCKS4 or SOCKS5For premium rotating proxies from Databay, the endpoint is gw.databay.co:8888 with your credentials using the format countryCode-XX:sessionId-YY.
API
Free proxy list API
Fetch the live proxy server list as JSON, CSV or TXT. No key or signup. Limited to 60 requests per minute per IP with 10-second response caching.
# Get all proxies (JSON)
curl "https://databay.com/api/v1/proxy-list"
# Filter by protocol and country
curl "https://databay.com/api/v1/proxy-list?protocol=socks5&country=US"
# Get US SOCKS5 proxies as CSV
curl "https://databay.com/api/v1/proxy-list?protocol=socks5&country=US&format=csv"
# Get the low-latency subset as plain text
curl "https://databay.com/api/v1/proxy-list?speed=fast&format=txt"import requests
# Fetch fast SOCKS5 proxies in Germany
resp = requests.get("https://databay.com/api/v1/proxy-list",
params={"protocol": "socks5", "country": "DE", "speed": "fast"})
data = resp.json()
for proxy in data["data"]:
print(f"{proxy['ip']}:{proxy['port']} - {proxy['latency']}ms")# Permanent plain-text files - one IP:PORT per line, refreshed every 5 minutes
https://databay.com/free-proxy-list.txt
https://databay.com/free-proxy-list/http.txt
https://databay.com/free-proxy-list/https.txt
https://databay.com/free-proxy-list/socks4.txt
https://databay.com/free-proxy-list/socks5.txt
# Full-list CSV and JSON files
https://databay.com/free-proxy-list.csv
https://databay.com/free-proxy-list.json
# Per-country (canonical country slug)
https://databay.com/free-proxy-list/<country>.txt # e.g. /united-states-of-america.txtQuery parameters
Guides
Free proxy setup, safety, and methodology guides
Detailed guides for configuring the list, understanding its risks, and reviewing how each endpoint is tested.
Keep going
Need filtered proxy downloads?
This list is free to use. When a job needs a managed uptime target and support, compare Databay’s paid pools.
Grab the list, no account
- Full TXT/CSV/JSON download
- Verified every 5 minutes
- Search, sort & copy any proxy
- Free API, 60 requests/min
Filtered exports & managed uptime targets
- Filter by protocol, country & anonymity
- Residential & datacenter pools, 99.9%+ uptime
- API keys, higher rate limits, support
Standard residential self-serve orders start at 1 GB.
Frequently Asked Questions
Are these free proxies safe to use?
What is the difference between a free proxy list and a free web proxy?
How often is the list updated?
What is the difference between HTTP, HTTPS, SOCKS4 and SOCKS5 proxies?
What do elite, anonymous and transparent mean?
How do I get a free proxy from this list?
Is there a free API?
Can I filter by country or protocol?
Why do some proxies stop working quickly?
Do these proxies support HTTPS?
What does "Google passed" mean?
Should I use free proxies for scraping or automation?
Latest from the blog
Setup guides, benchmarks, and research notes on proxies and web data collection.

Free Proxy List Benchmark: 2,911 Proxies Tested
Results from a June 11, 2026 test of 2,911 entries across seven free proxy lists, covering availability, HTTPS, latency, stability, and study limits.
James Johnson
Residential IP Reputation: 1,000 Published Observations
What 1,000 redacted route observations across 25 ASNs show about DNSBL labels, Tor and DROP checks, network classification, and dataset limits.
James Johnson
Headless Browser Detection Signals: Defensive Testing
How sites combine browser, rendering, network, session, and behavior signals—and how to test them defensively without treating a fingerprint as identity.
James JohnsonNeed managed proxies for production?
Free lists can help with low-stakes testing. For production workloads, Databay’s managed pools publish a 99.9%+ uptime target.
Paid residential plans are separate from the free proxy list.