In order to see a list of the active connections on your account, you will need to make a request through your proxies to "api.proxyrack.net/v1-beta/active-conns". The API response will show the time that the connection was made, the source IP address, and the destination address.
Please note that cURL is used below as an example. You do not need to use cURL in order to make a request to this API endpoint. You can do this wherever you have configured your proxies, such as in a browser, code, etc.
Examples
Unmetered Residential:
curl -x unmetered.residential.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/active-conns
Please note that this currently does not show the v1-beta API.
Premium Residential:
curl -x premium.residential.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/active-conns
Please note that this currently does not show the v1-beta API.
Private Unmetered Residential:
curl -x private.residential.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/active-conns
Please note that this currently does not show the v1-beta API.
USA Rotating Datacenter:
curl -x usa.rotating.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/active-conns
Please note that this currently does not show the v1-beta API.
Global Rotating Datacenter:
curl -x global.rotating.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/active-conns
Please note that this currently does not show the v1-beta API.
Static USA Datacenter:
curl -x usa.static.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/active-conns
Please note that this currently does not show the v1-beta API.
Mobile:
curl -x mobile.residential.proxyrack.net:9000 -U username:password api.proxyrack.net/v1-beta/active-conns
Result:
[
{
"createTime": "2024-03-19T14:35:50Z",
"sourceAddr": "127.0.0.1:0",
"destAddr": "api.proxyrack.net:80"
}
]