List all temporary passwords
Evan avatar
Written by Evan
Updated over a week ago

In order to see a list of the temporary password currently active on your account, you will need to make a request through your proxies to "api.proxyrack.net/v1-beta/passwords". The API response will show the password ID, the password label (that you provided when making the temporary password), and details about the expiration time for each temporary password that you have created.

Here is the guide on how to create a temporary password.

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 api.proxyrack.net/v1-beta/passwords

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

Private Unmetered Residential:
curl -x private.residential.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/passwords

USA Rotating Datacenter:
curl -x usa.rotating.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/passwords

Global Rotating Datacenter:
curl -x global.rotating.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/passwords

Static USA Datacenter:
curl -x usa.static.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/passwords

Result:

[
{
"id": "ekgDFh1Ig",
"label": "password1",
"expiration": {
"time": "2024-03-19T14:54Z",
"seconds": 284,
"unixTimestamp": 1710860070
}
},
{
"id": "wWMvK21SR",
"label": "password2",
"expiration": {
"time": "2024-03-19T14:54Z",
"seconds": 289,
"unixTimestamp": 1710860075
}
}
]
Did this answer your question?