Making Requests

Basic query

Basic query only requires passing username and password. No other parameters are needed. Such a query will result in the request being made from a random IP address (proxy). Every new request will use a different proxy.

Code examples

In this example, a query to ipinfo.pyproxy.io is performed from a random IP:

curl -x SERVERNAME.pyproxy.io:2510 -U "USERNAME-zone-adam:PASSWORD" ipinfo.pyproxy.io

A single backconnect proxy (SERVERNAME.pyproxy.io:2510) enables you to choose a continent proxy via additional parameters in the username. This approach also supports session control. Here is a sample of credentials:

USERNAME-zone-resi-region-europe-session-abcdef123456:PASSWORD
USERNAME-zone-resi-region-europe-session-abcdef123456-sessTime-10:PASSWORD

Below is a breakdown of the structure:

Query parameters

Parameter
Description

username

Proxy account username

zone

Name for IP pool

region

Continent, random region without this parameter

session

Required for Sticky IP and switching IPs. Use it when fixing an IP or finding specific IP when switching.

sessTime

Use with session to set IP duration.

password

Proxy account password

Last updated