Documentation
Manage Your Proxies: Review, Edit and Monitor Your Connections
Authentication
  • API Key Authentication
Proxy Operations
  • Change Proxy IP
  • List Available Locations
  • Change Proxy Location
  • Change Proxy IPv4 Rotation
  • Change Proxy IPv4 Whitelist
  • Append Proxy IPv4 Whitelist
  • Get IP Auth info
Integration
  • IOS
  • MacOS
  • Android
  • Windows
  • FoxyProxy
  • SwitchyOmega
Anti-Detect Browsers
  • Chrome
  • Firefox
  • Brave
  • AdsPower
  • Multilogin
  • GoLogin
  • Bit Browser
  • Ghost
  • Sphere
  • Clone Browser
  • Octo
  • Incogniton
  • Dolphin
  • AntBrowser
  • VMLogin
  • HideMyAcc
Other
  • Accepted Payment Methods
  • IP Blocking
  • IP Whitelisting Authentication
  • IP Rotating
  • Scrapy with ProxyPanel
  • Buying with Cryptocurrency
  • Selenium with ProxyPanel
  • Urllib3 with ProxyPanel
  • Requests with ProxyPanel
  • Playwright with ProxyPanel
  • HTTPX with ProxyPanel
  • Beatutiful Soup with ProxyPanel

Authentication

API Key Authentication

API Key Authentication is a secure method to verify the identity of a user or application accessing our platform Your API key is a secret key, akin to your credentials, and it must be kept confidential. Treat your API key with the same level of security as you would your password. This key is required for every request you make to our API, including changing proxy locations or updating the rotation of proxies.

Obtain Your API Key

  1. Sign in to your account on our platform.

  2. Navigate to the 'API' section in the sidebar of your account settings.

  3. Your API key is displayed akin to the next picture

  4. You can click on 'Issue new API Key' to generate a new one. Ensure to store this key in a secure place

Understanding User Identification:

Each request to our platform requires identification through a username and a nickname.
For example, if your proxy's user identifier is 'john.custom1', then:

  • The username will be 'john'
  • The nickname will be 'custom1'

The structure of the request URL should be as follows:

https://www.proxypanel.io/proxy/XX/USERNAME/NICKNAME/API_KEY

Example Usage

import requests

url = 'https://www.proxypanel.io/proxy/change-ip/john/custom1/8a56f95da2bb44f6151bf688737b7e29:Y-04pbQPSmn_i-g_g38UX_R0E6wvmJJOcWMRQ6rGCr0'

response = requests.get(url)

print(response.text)

Proxy Operations

Change Proxy IP

This endpoint allows you to change the IP address of a proxy, connecting it to a random location.

GET

https://www.proxypanel.io/proxy/XX/USERNAME/NICKNAME/API_KEY

Request & Response

import requests

url = 'https://www.proxypanel.io/proxy/change-ip/john/custom1/8a56f95da2bb44f6151bf688737b7e29:Y-04pbQPSmn_i-g_g38UX_R0E6wvmJJOcWMRQ6rGCr0'

response = requests.get(url)

print(response.text)

List Available Locations

This endpoint retrieves a list of available proxy locations. It can be used to retrieve the available locations and assist in changing a proxy's location.

GET

https://www.proxypanel.io/proxy/list/locations

Request & Response

import requests

url = 'https://www.proxypanel.io/proxy/list/locations'

response = requests.get(url)

print(response.text)

Change Proxy Location

This endpoint enables you to change the location of a proxy. If the location parameter is omitted, a random location is chosen. This operation can be performed once every 3 minutes.


Please note: that when specifying locations, you should replace any whitespace with an underscore _ and use lowercase letters. For example, 'Hermosa Beach' should be written as hermosa_beach.

GET

https://www.proxypanel.io/proxy/locations/USERNAME/NICKNAME/LOCATION/API_KEY

Request & Response

import requests

url = 'https://www.proxypanel.io/proxy/locations/john/custom1/hermosa_beach/8a56f95da2bb44f6151bf688737b7e29:Y-04pbQPSmn_i-g_g38UX_R0E6wvmJJOcWMRQ6rGCr0'

response = requests.get(url)

print(response.text)

Change Proxy IP Rotation

This endpoint allows you to adjust the IP rotation settings of a proxy. The minimum rotation interval is 180 seconds.


Please note: Rotation must be an integer, followed by "s" for seconds, "m" for minutes, "h" for hours, or "d" for days. For example, to set a rotation interval of 30 minutes, use 30m.

GET

https://www.proxypanel.io/proxy/ROTATION/USERNAME/NICKNAME/ROTATION/API_KEY

Request & Response

import requests

url = 'https://www.proxypanel.io/proxy/rotation/john/custom1/30m/8a56f95da2bb44f6151bf688737b7e29:Y-04pbQPSmn_i-g_g38UX_R0E6wvmJJOcWMRQ6rGCr0'

response = requests.get(url)

print(response.text)

Update IPv4 whitelist

This endpoint allows you to set the IPv4 whitelist to new values. It will overwrite any existing values.

POST

https://www.proxypanel.io/proxy/update-ipv4/USERNAME/NICKNAME/API_KEY

Parameters

Attributes

Types

Description

ipv4_whitelist

string

This parameter for the IPv4 whitelist should be a string formatted as 'ip1,ip2,...,ipN'.

Request & Response

import requests

url = 'https://www.proxypanel.io/proxy/update-ipv4/john/custom1/8a56f95da2bb44f6151bf688737b7e29:Y-04pbQPSmn_i-g_g38UX_R0E6wvmJJOcWMRQ6rGCr0'
data = {
'ipv4_whitelist': '123.123.123.123, 123.123.123.124'
}
response = requests.post(url, json=data)

print(response.text)

Append IPv4 whitelist

This endpoint differs from the update endpoint in that it appends to the IPv4 whitelist the new values. It will only add a value if it does not already exist.

POST

https://www.proxypanel.io/proxy/append-ipv4/USERNAME/NICKNAME/API_KEY

Parameters

Attributes

Types

Description

ipv4_whitelist

string

This parameter for the IPv4 whitelist should be a string formatted as 'ip1,ip2,...,ipN'.

Request & Response

import requests

url = 'https://www.proxypanel.io/proxy/append-ipv4/john/custom1/8a56f95da2bb44f6151bf688737b7e29:Y-04pbQPSmn_i-g_g38UX_R0E6wvmJJOcWMRQ6rGCr0'
data = {
'ipv4_whitelist': '123.123.123.123, 123.123.123.124'
}
response = requests.post(url, json=data)

print(response.text)

Get IP Auth info

This endpoint allows you to retrieve IP authentication information if it is enabled. It returns the allowed IPs, host, and port for the specified proxy.

GET

https://www.proxypanel.io/proxy/auth_info/USERNAME/NICKNAME/API_KEY

Request & Response

import requests

url = 'https://www.proxypanel.io/proxy/ip-auth-get/john/custom1/30m/8a56f95da2bb44f6151bf688737b7e29:Y-04pbQPSmn_i-g_g38UX_R0E6wvmJJOcWMRQ6rGCr0'

response = requests.get(url)

print(response.text)