Gateway credentials
A package username plus proxy password authorizes traffic on HTTP or SOCKS5 gateway ports.
Proxy traffic and platform API calls use different credentials. Keep the two systems separate in code, secret storage, and incident response.
Gateway credentials
A package username plus proxy password authorizes traffic on HTTP or SOCKS5 gateway ports.
Platform credentials
A JWT or static API key authorizes control-plane requests under the assigned deployment API hostname.
The username carries both the package identity and optional routing instructions:
package-elite-country-us-sid-checkout-42-ttl-1800└── base ───┘ └ target ┘ └──── session controls ────┘The password remains a separate secret. Do not append targeting tokens to the password and do not substitute a dashboard login password.
http://USERNAME:PASSWORD@HOST:PORTcurl \ --proxy http://proxy.your-domain.example:8000 \ --proxy-user 'package-elite-country-us:YOUR_PROXY_PASSWORD' \ https://api.ipify.org?format=jsonSeparating --proxy-user can make shell quoting and secret injection easier.
| Symptom | Check first |
|---|---|
407 Proxy Authentication Required | Username/password pair, order activity, and the correct gateway port |
| Immediate connection refusal | Hostname, port, firewall, and protocol mismatch |
| Works without targeting but fails with it | Token spelling and inventory availability |
API returns 401 | The API Authorization header, not proxy credentials |
For API credentials, continue to API fundamentals.