You can check when your sticky session will expire in two locations:
Your dashboard
The Proxyrack API
Dashboard:
Click on the "Proxy Endpoints" tab and then scroll down to the "Currently Assigned Ports" section. You will see a column of the table labeled "Expires in" where you can see the number of seconds left until the sticky session expires.
Proxyrack API:
Follow the guide here to find your sticky session information. In the API response, you will see the "expireTime" timestamp.
{
"id": "10002",
"port": 10002,
"expireTime": "2024-11-14T14:38:28Z", // timestamp here
"requestParams": {
"autoReplace": "city",
"country": "AU",
"timeout": "15s",
"ttl": "600s"
},
"proxy": {
"online": true,
"id": "PRQ7IPAXYE",
"ip": "20.211.73.58",
"country": "AU",
"city": "Sydney",
"isp": "Microsoft Azure"
}
}