ProxyHubb Docs

Connect session intents

Rotating and sticky intents for the Connect dashboard and SDKs.

Connect (/dashboard/proxy) issues a signed session intent instead of minting long-lived credentials up front. Intents are short-lived tokens you present at the buyer proxy.

Create

POST /v1/sessions/intent
Authorization: Bearer <jwt>
Content-Type: application/json

{
  "type": "rotating",
  "target_geo": "US"
}

type must be rotating or sticky. Optional fields include listing_id, bandwidth_limit, target_isp, routing_profile, max_price_per_gb, and domain allow/block lists.

Response

{
  "token": "<jwt-like-token>",
  "expires_at": "...",
  "lifecycle_state": "authorized",
  "intent": { "intent_id": "...", "session_type": "rotating" }
}

Use the proxy

curl -x "http://session-intent:[email protected]:8090" https://httpbin.org/ip

Do not put the token in the username field. Username is literally session-intent; password is the token.

SDKs

LanguageCreateProxy helper
Pythoncreate_session_intent(...)as_requests_proxy_from_intent
NodecreateSessionIntentsessionIntentProxyUrl
GoCreateSessionIntentSessionIntentProxyURL

Requires a dashboard JWT. API keys alone cannot create intents today.

Common errors

Code / symptomCauseFix
401JWT missing or expiredSign in again / refresh token
403API key used for intent createSwitch to Bearer JWT
400 invalid typetype not rotating or stickyFix the request body
Proxy auth fails after successIntent expired (expires_at)Create a new intent
Empty exit IP / flaky routingCapacity or geo constraintRetry, widen geo, or try sticky with a listing

Full interactive contract: API reference.