DryProxy Logo DryProxy

Integration Documentation.

Learn how to connect your tools, scripts, and software to DryProxy clean routes via HTTP.

1. Obtain Your Tunnel Credentials

Copy these four parameters directly from your user dashboard (HTTP proxy protocol only).

Hostname
g.dryproxy.com
Port
90
Username
your_dashboard_username
Password
your_dashboard_password

2. Quick Integration Examples

Standard HTTP implementations for common tools and programming languages.

cURL (Terminal)
curl -x http://username:[email protected]:90 https://dryproxy.com/ipinfo
Python (Requests)
import requests

proxies = {
    "http": "http://username:[email protected]:90",
    "https": "http://username:[email protected]:90"
}

response = requests.get("https://dryproxy.com/ipinfo", proxies=proxies)
print(response.text)
Node.js (Axios)
const axios = require('axios');

const response = await axios.get('https://dryproxy.com/ipinfo', {
    proxy: {
        protocol: 'http',
        host: 'g.dryproxy.com',
        port: 90,
        auth: {
            username: 'your_dashboard_username',
            password: 'your_dashboard_password'
        }
    }
});

console.log(response.data);

Need Custom Routing or Code Examples?

If you are configuring specialized scrapers, software tools, or HTTP setups, reach out to our team.

Contact Technical Support