ProxyHubb Docs

Bulk pools

Partner API keys, create pools, fetch CONNECT endpoints, and scrape with many stable proxies.

Bulk pools give partners many buyer-proxy endpoints under one API key — without marketplace escrow. Traffic still uses proxy.proxyhubb.com:8090 (CONNECT / SOCKS5).

Scopes (important)

ScopeCan
proxy:read / proxy:writeList/create/delete pools and read endpoints
orders:createB2B purchase paths — not the same as pools
Dashboard JWTMint API keys, also call pool APIs

Buyer phub_… / pk_… keys cannot mint other keys. Mint with JWT:

bash
curl -sS -X POST https://api.proxyhubb.com/v1/bulk/api-keys \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name":"scrapers","scopes":["proxy:read","proxy:write"]}'

Create a pool

bash
curl -sS -X POST https://api.proxyhubb.com/v1/bulk/pools \
  -H "X-API-Key: $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name":"scrapers",
    "size":5,
    "session_type":"rotating"
  }'
FieldNotes
nameRequired label
sizeEndpoint count, 1–100 (default often 10)
session_typerotating or sticky
bytes_limitOptional; 0 = unlimited (policy permitting)

Fetch endpoints

bash
curl -sS https://api.proxyhubb.com/v1/bulk/pools/POOL_UUID/endpoints \
  -H "X-API-Key: $API_KEY"

Each endpoint includes roughly:

FieldValue
host / portBuyer edge (proxy.proxyhubb.com / 8090)
usernamepool-{first8}-{index} e.g. pool-22222222-001
passwordServer-derived secret
session_typerotating / sticky

Smoke-test one endpoint

bash
curl -sS -x "http://USER:[email protected]:8090" \
  https://httpbin.org/ip

SDK helpers: Python · Node.js · Go (create_pool / createPool).

Lifecycle

MethodPath
GET/v1/bulk/pools
DELETE/v1/bulk/pools/{pool_id} (soft-delete)
GET/DELETE/v1/bulk/api-keys / {key_id} (JWT for create/delete keys)

Pools vs other paths

NeedPath
Quick dashboard ConnectSession intents
Escrow-backed listing bandwidthOrders
Partner sandbox buyB2B
Many automation endpointsBulk pools (this page)

See also Access paths.

Common errors

SymptomFix
401 / 403 on poolsMissing proxy:read/proxy:write on the key
Intent create with pool keyIntents need JWT — wrong path
501 from proxyClient not using CONNECT — Buyer proxy
Key cannot create keysUse JWT for POST /v1/bulk/api-keys