Good and fast proxies
The quality of the support and the product itself is very good, pricing is reasonable given this high standard.
0 live verified HTTP, HTTPS, SOCKS4 and SOCKS5 proxies across 0 countries. Refreshed every 10 minutes. Filter, copy, and download.
Last verification completed
Works with the tools you already use
You're previewing 50 of 0 verified proxies. Sign up free to download the filtered list in your preferred format.
| IP Address | Port | Country | Protocol | SSL | Speed | Uptime | Updated |
|---|
These are public, third-party proxies. For reliable speed, uptime, and privacy, use our Premium Residential Proxies.
Live-verified free Ethiopia proxy list. 0 HTTP, HTTPS, SOCKS4 and SOCKS5 proxies with IPs registered in Ethiopia, re-probed every 10 minutes. Each entry includes protocol, latency, uptime and Google reachability. Download as JSON, CSV, or plain text. Methodology: how we discover and verify entries.
Continuous probing, real-time verification, transparent metrics. Everything you need to pick a proxy that actually works.
Continuously probed every 10 minutes. Never stale.
Every proxy re-verified on a rolling 10-minute window.
Global coverage from IPs registered worldwide.
Stale entries drop on the next cycle. No dead proxies.
See what real customers say about Databay's proxy infrastructure.
The quality of the support and the product itself is very good, pricing is reasonable given this high standard.
I couldn't access a website they were blocking, after justifying my request they unblocked the website for me.
I was having trouble using their API, and the livechat support couldn't help me, but gave me direct contact with one of the Databay developers who was able to guide me.
Wechat and Alipay are accepted!
They helped me configure my proxies with Incogniton, support 10/10.
Amazing customer support, extremely patient, would recommend 10/10.
Worth the price, low fraud score proxy pool.
Support spent 1 hour helping me solve my SOCKS5 connection problem, thanks again :)
Good proxy pool, speed can be improved.
Lena was there to walk me through the entire process.
A complete guide to proxy servers, protocols, use cases, and how to use them effectively.
A proxy server is an intermediary computer that sits between your device and the internet. When you send a request through a proxy, the proxy forwards it to the destination server using its own IP address. The destination server sees the proxy's IP, not yours.
This masks your real location, allows you to appear in a different country, and can bypass restrictions imposed by networks or websites. Free proxies work exactly the same way, the only difference is that they are operated by third parties and shared among many users simultaneously.
HTTP proxies handle standard web traffic and work well for basic browsing and data collection from HTTP websites. They operate at the application layer and can interpret web requests directly.
HTTPS proxies (also called SSL proxies) support encrypted connections. When you access a site over HTTPS through one of these proxies, the connection between your browser and the proxy is tunneled, so the proxy cannot read the encrypted payload. Use these for any site that requires a secure connection.
SOCKS4 proxies tunnel raw TCP at the transport layer with a minimal handshake. They do not support authentication, UDP, or remote DNS resolution, but they remain useful for legacy clients and cases where the simpler protocol is enough. SOCKS4a is a backwards-compatible extension that adds remote hostname resolution.
SOCKS5 proxies are the most versatile. They operate at a lower network layer and are protocol-agnostic, they can tunnel any TCP or UDP traffic including web, FTP, SMTP, and game traffic. SOCKS5 also supports authentication and IPv6. For anything beyond basic web browsing, SOCKS5 is the preferred choice.
For any production workload, price monitoring, ad verification, market research, or large-scale scraping, premium proxies are the only reliable option.
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:
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.
An open look at how Databay discovers, probes and scores every entry in this list.
Every proxy on this page is an IP and port harvested from publicly known proxy sources and then put through a continuous verification loop. Fresh batches land on this page within seconds of being re-probed, and every candidate is re-verified on a rolling 10-minute window. Any proxy whose most recent check is older than 6 hours is dropped from this list entirely, stale entries never appear, regardless of how the upstream feed behaves.
For each probe we open a real connection, issue a lightweight HTTP request and a targeted HTTPS request, and measure the end-to-end round-trip. The result drives three public columns:
HTTPS support is reported in three states, full (valid certificate chain), loose (works only with SSL verification disabled), and unsupported (HTTP destinations only).
Dead proxies are not kept on the page to inflate the count: if an entry stops responding, it disappears on the next cycle. That is why the list size shifts throughout the day. Machine-readable copies of this dataset (with the same fields) are available at /api/v1/proxy-list in json, csv and plain-text formats.
curl -x http://IP:PORT https://example.com. For Python, use requests.get(url, proxies={"http": "http://IP:PORT", "https": "http://IP:PORT"}). In your browser, go to Settings > Network > Proxy and enter the IP and Port. Proxies marked “HTTPS” work with secure websites. Proxies marked “HTTP” only work with non-secure (http://) websites, if a proxy doesn’t seem to work, check whether you’re connecting to an HTTPS site with an HTTP-only proxy. Full setup walkthroughs: How to use a free proxy (cURL, Python, Node.js, Scrapy, Playwright).verify=False in Python, -k in cURL). A cross means the proxy only works with plain HTTP sites.https://databay.com/api/v1/proxy-list. It supports filtering by protocol, country, speed, and Google compatibility. Output formats include JSON, CSV, and plain text. The API is rate limited to 50 requests per second with 10-second caching. See the API documentation section below for details.Real-time breakdown of our 0 active proxies by protocol and country.
Access our free proxy list programmatically. Rate limited to 50 requests per second with 10-second caching.
GET https://databay.com/api/v1/proxy-list# 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 fast, Google-compatible proxies as plain text
curl "https://databay.com/api/v1/proxy-list?google=true&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")protocol string all http, https, socks4, socks5country string all ISO 2-letter code (US, DE, etc.)ssl string all strict (valid cert), loose (any HTTPS)google bool all true = Google-compatible onlyspeed string all fast, medium, slowformat string json json, csv, txtlimit int 500 1-1000 proxies per pagepage int 1 Pagination page numberLong-form technical guides covering the methodology, safety model, and setup behind this list.
Free account, no credit card. Get unlimited downloads of every protocol and every country, or skip ahead with 34M+ premium residential IPs for production workloads.
Expert guides on proxies, web scraping, and data collection.

A technical breakdown of the three proxy anonymity tiers, the HTTP headers that distinguish them, and how to verify where any given proxy actually sits.

Proxy vs VPN compared across architecture, encryption, speed, privacy, and use cases. A clear decision matrix to choose the right tool for your needs.

Learn web scraping with proxies from setup to scale. Covers proxy types, tool integration, CAPTCHA handling, session management, and cost optimization.
Join 8,000+ users using Databay's rotating proxy infrastructure for web scraping, data collection, and automation. Access 34M+ residential, datacenter, and mobile IPs across 200+ countries with pay-as-you-go pricing from $0.50/GB. No monthly commitment, no connection limits - start collecting data in minutes.