ProxyHubb Docs

Official SDKs

Python, Node.js, and Go clients for Connect, credentials, and bulk pools.

Shared surface (v0.2+): session intents, order credentials, bulk pools, and proxy URL helpers.

LanguagePackageInstall
Pythonproxyhubbpip install proxyhubb
Node.js@proxyhubb/sdknpm install @proxyhubb/sdk
Gomodulego get github.com/samuel-1-avson/ProxySocialHub/sdks/[email protected]

Defaults

SettingDefaultOverride
Control APIhttps://api.proxyhubb.comconstructor / base_url / baseURL
Buyer proxyproxy.proxyhubb.com:8090PROXYHUBB_PROXY_ENDPOINT

Auth reminder

CredentialFlows
JWT (Authorization: Bearer)Session intents, order credentials
API key (X-API-Key / Bearer phub_…)Bulk pools, B2B purchase scopes

Mixing these up is the most common integration mistake: pool calls with only a JWT may work for some routes, but intent create requires JWT; pools are designed around API keys.

Pick a path

  1. Quick Connect — JWT → create intent → proxy with session-intentPython / Node / Go
  2. Marketplace order — buy → get*OrderCredentials → CONNECT username/password
  3. Bulk pools — API key → createPool → pool proxy URLs

Common errors (all SDKs)

SymptomFix
401 / unauthorizedCheck JWT expiry or API key value
Intent create fails with API keyPass access_token / accessToken, not only phub_…
Proxy URL wrong hostSet PROXYHUBB_PROXY_ENDPOINT or pass endpoint into the client
HTTPS requests hang / 501Ensure the HTTP client uses CONNECT (SDK helpers do)

Deep dives: Python · Node.js · Go