Quick Start Guide
This guide will help you make your first proxy request in under 5 minutes.
Prerequisites
Before you begin, you'll need:
- A WeProxies account (Sign up here)
- An active proxy subscription or balance for pay-as-you-go
- Your proxy credentials (username and password)
Step 1: Get Your Credentials
- Log in to your WeProxies Dashboard
- Navigate to Proxies in the sidebar
- Click on your active subscription
- Copy your Username and Password
Your credentials will look like:
- Username:
wp_abc123xyz - Password:
your-secure-password
Step 2: Configure Your Proxy
Proxy Endpoint
Host: proxy.weproxies.com
Port: 1080
Supported Protocols
| Protocol | URL Format |
|---|---|
| HTTP | http://USERNAME:PASSWORD@proxy.weproxies.com:1080 |
| HTTPS | http://USERNAME:PASSWORD@proxy.weproxies.com:1080 |
Step 3: Make Your First Request
Using cURL
# Basic HTTP request
curl -x "http://wp_abc123xyz:your-password@proxy.weproxies.com:1080" \
https://api.ipify.org?format=json
# With country targeting (US)
curl -x "http://wp_abc123xyz-country-US:your-password@proxy.weproxies.com:1080" \
https://api.ipify.org?format=json
# With sticky session
curl -x "http://wp_abc123xyz-country-US-session-mysession123:your-password@proxy.weproxies.com:1080" \
https://api.ipify.org?format=json
Using Python
import requests
proxy = {
"http": "http://wp_abc123xyz:your-password@proxy.weproxies.com:1080",
"https": "http://wp_abc123xyz:your-password@proxy.weproxies.com:1080"
}
response = requests.get("https://api.ipify.org?format=json", proxies=proxy)
print(response.json())
# Output: {"ip": "xxx.xxx.xxx.xxx"}
Using Node.js
const axios = require('axios');
const HttpsProxyAgent = require('https-proxy-agent');
const agent = new HttpsProxyAgent(
'http://wp_abc123xyz:your-password@proxy.weproxies.com:1080'
);
axios.get('https://api.ipify.org?format=json', { httpsAgent: agent })
.then(response => console.log(response.data))
.catch(error => console.error(error));
Step 4: Verify Your Connection
A successful response will show an IP address different from your original IP:
{
"ip": "203.45.167.89"
}
What's Next?
- Authentication Options - Learn about username formats
- Country Targeting - Target specific locations
- Session Management - Maintain IP persistence
- Integration Guides - Framework-specific examples
Troubleshooting
If you encounter issues:
- 407 Proxy Authentication Required - Check your credentials
- Connection timeout - Verify the proxy endpoint and port
- No response - Check your subscription status
See our Troubleshooting Guide for more help.