Skip to main content
All CollectionsFAQs and TroubleshootingFAQs
How do I check when the proxy will change? When will a sticky session expire?
How do I check when the proxy will change? When will a sticky session expire?
K
Written by Katy
Updated over a month ago

You can check when your sticky session will expire in two locations:

  1. Your dashboard

  2. 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"
}
}

Did this answer your question?