ProxyHubb Docs

Buyer proxy protocol

HTTP CONNECT and SOCKS5 only — absolute-URI forward proxy is not supported.

ProxyHubb’s buyer-facing edge (proxy.proxyhubb.com:8090) is an HTTP CONNECT (and SOCKS5) proxy — not a classic absolute-URI forward proxy.

Supported

ProtocolPortNotes
HTTP CONNECT8090Tunnel TLS via CONNECT host:port — what curl -x and HTTPS clients use
SOCKS5same listenerUsername/password or session-intent auth

Not supported

Plain HTTP forward-proxy requests (GET http://example.com/… with an absolute URI, no CONNECT) return 501 with:

Only CONNECT supported; use HTTP CONNECT or SOCKS5

Configure clients for HTTPS proxy / CONNECT, not “HTTP proxy that rewrites absolute URLs.”

Auth

ModeUsernamePassword
Marketplace orderfrom proxy_credentials.usernamefrom proxy_credentials.password
Session intentsession-intentintent token string

Host/port are always proxy.proxyhubb.com:8090 unless you override with PROXYHUBB_PROXY_ENDPOINT.

Examples

# Marketplace credentials
curl -x "http://USER:[email protected]:8090" https://httpbin.org/ip

# Session intent (Connect)
curl -x "http://session-intent:[email protected]:8090" https://httpbin.org/ip

# SOCKS5 (same auth forms)
curl --socks5 "USER:[email protected]:8090" https://httpbin.org/ip

Python / Node / Go helpers build these URLs for you — see SDKs.

Common errors

SymptomMeaningFix
501 + “Only CONNECT supported”Client used absolute-URI HTTP proxy modeSwitch to CONNECT (curl -x against HTTPS targets) or SOCKS5
407 Proxy Authentication RequiredMissing or invalid credentialsCheck username/password; re-mint intent or re-fetch credentials
Timeout / connection refusedWrong host/port or local firewallConfirm :8090, not :443 or :8080
TLS errors to destinationDestination site issue, not proxy authTest with https://httpbin.org/ip first
Works in curl, fails in libraryLibrary defaulting to HTTP forward proxyPass an explicit HTTPS proxy URL / CONNECT agent

See also Session intents and Order credentials.