List All Active Sticky Sessions
Evan avatar
Written by Evan
Updated over a week ago

Here you can view more information about all your sticky sessions. The API response will list the session ID (if you have specified one, otherwise the ID will simply be the port number), the port number, the expiration time, the request parameters, and the proxy information for each session that is currently active.

In order to see the active sticky sessions, you will need to make a request through your proxies to "api.proxyrack.net/v1-beta/sessions".

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:

Please note: Unmetered Residential proxies are no longer available for purchase. Existing subscriptions will continue to work, however.
curl -x unmetered.residential.proxyrack.net:10000 -U username:password http://api.proxyrack.net/v1-beta/sessions

Live example here. Please note that this currently does not show the v1-beta API.

Premium Residential:
curl -x premium.residential.proxyrack.net:10000 -U username:password http://api.proxyrack.net/v1-beta/sessions

Live example here. 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 http://api.proxyrack.net/v1-beta/sessions

Live example here. 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 http://api.proxyrack.net/v1-beta/sessions

Live example here. 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 http://api.proxyrack.net/v1-beta/sessions

Live example here. 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 http://api.proxyrack.net/v1-beta/sessions

Live example here. Please note that this currently does not show the v1-beta API.


Result:

[
{
"id": "10000",
"port": 10000,
"expireTime": "2024-03-19T14:23:38Z",
"requestParams": {
"autoReplace": "none",
"ttl": "60s"
},
"proxy": {
"online": true,
"id": ""
}
},
{
"id": "10001",
"port": 10001,
"expireTime": "2024-03-19T14:32:36Z",
"requestParams": {
"autoReplace": "city",
"country": "fr",
"timeout": "15s",
"ttl": "600s"
},
"proxy": {
"online": true,
"id": "PRG5SEZ0GY",
"ip": "88.175.18.203",
"country": "FR",
"city": "Briare",
"isp": "Free SAS"
}
}
]

Did this answer your question?