Free Proxy List by Oxylabs provides free datacenter proxies with United States IP addresses for developers and testers. It offers HTTP, HTTPS, and SOCKS5 proxy protocols with automatic IP rotation through 5 US-based IP addresses. Each account gets 20 concurrent sessions and 5GB of monthly traffic at no cost. The project includes integration examples for cURL, Python, JavaScript, PHP, Go, Java, and C#, making it easy to plug into any tech stack. Ideal for web scraping development, testing geo-restricted content, and building proxy-aware applications without upfront costs.
git clone https://github.com/oxylabs/free-proxy-list.git
import requests
proxies = {
'http': 'http://USERNAME:[email protected]:8000',
'https': 'http://USERNAME:[email protected]:8000',
}
response = requests.get(
'https://ip.oxylabs.io/location',
proxies=proxies
)
print(response.text)