Access premium residential IPs through a single BackConnect gateway
Nimble Residential Proxy provides access to a global network of premium residential IPs through a single BackConnect gateway. Route your requests through real residential IPs from 195+ countries with granular geotargeting and session control.
Proxy service requires KYC verification and is not available for self-service accounts. Contact our team to request access.
proxies = { 'http': 'http://account-accountName-pipeline-pipelineName-session-mysession123:pipelinePassword@ip.nimbleway.com:7000', 'https': 'https://account-accountName-pipeline-pipelineName-session-mysession123:pipelinePassword@ip.nimbleway.com:7000'}# Both requests use the same IPresponse1 = requests.get('https://ipinfo.io/json', proxies=proxies)response2 = requests.get('https://example.com', proxies=proxies)print(f"Both requests used IP: {response1.json()['ip']}")
proxies = { 'http': 'http://account-accountName-pipeline-pipelineName-country-US-state-NY-session-mysession:pipelinePassword@ip.nimbleway.com:7000', 'https': 'https://account-accountName-pipeline-pipelineName-country-US-state-NY-session-mysession:pipelinePassword@ip.nimbleway.com:7000'}# Multiple requests maintain same New York IPfor i in range(3): response = requests.get('https://ipinfo.io/json', proxies=proxies) print(f"Request {i+1}: {response.json()['city']}, {response.json()['region']}")