Proxy Format
Understanding netdash proxy endpoint structure, authentication, and parameter configuration.
Basic Format
netdash proxy endpoints follow this structure:
plan-gateway.netdash.io:portComponents
| Parameter | Values | Description |
|---|---|---|
plan | solve, scale, opus | Gateway type |
gateway | us, eu | Geographic region |
port | 1000, 2000, 3000 | Plan-specific port |
Authentication
Provide your username and password using standard HTTP proxy authentication:
http://USERNAME:PASSWORD@solve-us.netdash.io:1000Credentials are available in your dashboard under API settings.
Session Management
Control IP rotation behavior by appending parameters to your username string.
Sticky Sessions
Maintain the same IP address for a specified duration by adding session and TTL parameters:
username-session-abc123-ttl-15:password-session-abc123Unique session identifier. Use any random string. Same session ID maintains the same IP.
-ttl-15Time-to-live in minutes. Specifies how long to keep the IP active (1-120 minutes).
Rotating Sessions
Get a new IP on every request by omitting session parameters:
username:passwordCountry Targeting
Route traffic through specific countries using the cc parameter:
username-cc-US-session-abc123-ttl-15:passwordUse 2-letter ISO country codes (US, GB, DE, FR, etc.).
Complete Example
A complete proxy URL with all parameters:
http://user-cc-US-session-abc123-ttl-15:password@solve-us.netdash.io:1000This configuration routes through a US IP, maintains the same session for 15 minutes, and uses the Solve gateway.
Code Examples
curl -x http://user-cc-US-session-abc123-ttl-15:pass@solve-us.netdash.io:1000 \
https://api.ipify.org?format=jsonGateway Reference
| Plan | US Gateway | EU Gateway |
|---|---|---|
| Solve | solve-us.netdash.io:1000 | solve-eu.netdash.io:1000 |
| Scale | scale-us.netdash.io:2000 | scale-eu.netdash.io:2000 |
| Opus | opus-us.netdash.io:3000 | opus-eu.netdash.io:3000 |