Networking
โ
2.6k
Python
oxylabs/free-proxy-list
2.6k
Stars
27
Forks
0
Issues
Python
Language
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.
View on GitHub
git clone https://github.com/oxylabs/free-proxy-list.git
Quick Start Example
python
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)