Get started

     API Endpoint
 
     https://proxies.software/v2/public/
                 

The API endpoint will only work if you have active servers under your account.

To use this API, you need an API key. Get one at your settings page in Settings page at our website.

authorize ip


 # Here is a curl example
 curl \
 -X POST https://proxies.software/v2/public/authorize-ip \
 -F 'api_key=your_api_key' \
 -F 'ip_address=180.0.0.0' \
 -F 'server_id=2'
                 

To authorize an IP address you need to make a POST call to the following url :
https://proxies.software/v2/public/authorize-ip



 Result example :
 
 {
   success: true
 }
                 

QUERY PARAMETERS

Field Type Description
api_key String Your API key.
ip_address String The IP address to authorize
server_id Integer The server id that you wish to authorize to

de-authorize ip


 # Here is a curl example
 curl \
 -X POST https://proxies.software/v2/public/remove-ip \
 -F 'api_key=your_api_key' \
 -F 'ip_address=180.0.0.0' \
 -F 'server_id=2'
                 

To de-authorize an IP address you need to make a POST call to the following url :
https://proxies.software/v2/public/remove-ip



 Result example :
 
 {
   success: true
 }
                 

QUERY PARAMETERS

Field Type Description
api_key String Your API key.
ip_address String The IP address to authorize
server_id Integer The server id that you wish to authorize to

Errors

The PSoftware API uses the following error codes:

Error Code Meaning
404 Invalid Request
400 Params Error
200 Success Request