List Proxies
Lists all proxy servers belonging to the account.
curl --request GET \
--url https://cmd.illusory.io/v1/proxies \
--header 'Authorization: Bearer <token>'
{
"ok": true,
"data": [
{
"proxy_name": "ILL-US-AU1-9999",
"nickname": null,
"isp": "Verizon",
"period": "weekly",
"auto_renew": false,
"auto_renew_interval": 1,
"added_at": "2050-12-04T17:43:16.407+00:00",
"expires_at": "2050-12-14T23:23:09.792+00:00",
"network_status": "online",
"server_ip": "198.765.543.21",
"h_port": 12345,
"s_port": 67890,
"auth_method": "basic",
"username": "john",
"password": "wick05",
"whitelist": null,
"auto_change": false,
"auto_change_time": 0,
"last_ip_change": "2050-12-04T17:51:40.339+00:00",
"last_reboot": "2050-12-04T17:51:40.339+00:00",
"traffic": 60156561622,
"h_threads": 99,
"s_threads": 0,
"city": "Austin",
"state": "TX"
}
]
}
Authorizations
The Authorization
header is used to authenticate with the API using your Master
API key. Value is of the format Bearer YOUR_KEY_HERE
.
Response
Indicates whether the request was successful e.g., true
An array of proxy details
Unique identifier of the proxy server
"ILL-US-AU1-9999"
Optional nickname for the user or proxy.
null
Name of the Internet Service Provider
"Verizon"
Subscription period, e.g., weekly
, monthly
"weekly"
Indicates whether the expiration auto-renews
false
The period interval for auto-renewal
1
Timestamp of when the proxy was added
"2050-12-04T17:43:16.407+00:00"
Timestamp of when the proxy will expire
"2050-12-14T23:23:09.792+00:00"
Current status of the network, e.g., online
, offline
, rebooting
"online"
IP address of the server
"198.765.543.21"
Port number for HTTP connections
12345
Port number for SOCKS5 connections
67890
Authentication method. basic
or whitelist
"basic"
Username for authentication
"john"
Password for authentication
"wick05"
List of whitelisted IP addresses or domains, can be null
null
Indicates whether the IP changes automatically
false
Time interval for automatic IP change, in minutes
0
Timestamp of the last IP change
"2050-12-04T17:51:40.339+00:00"
Timestamp of the last server reboot
"2050-12-04T17:51:40.339+00:00"
Total network traffic in bytes
60156561622
Number of active HTTP threads
99
Number of active SOCKS5 threads
0
The city where the server is located
"Austin"
The abbreviated state where the server is located. e.g., TX
"TX"
Was this page helpful?
curl --request GET \
--url https://cmd.illusory.io/v1/proxies \
--header 'Authorization: Bearer <token>'
{
"ok": true,
"data": [
{
"proxy_name": "ILL-US-AU1-9999",
"nickname": null,
"isp": "Verizon",
"period": "weekly",
"auto_renew": false,
"auto_renew_interval": 1,
"added_at": "2050-12-04T17:43:16.407+00:00",
"expires_at": "2050-12-14T23:23:09.792+00:00",
"network_status": "online",
"server_ip": "198.765.543.21",
"h_port": 12345,
"s_port": 67890,
"auth_method": "basic",
"username": "john",
"password": "wick05",
"whitelist": null,
"auto_change": false,
"auto_change_time": 0,
"last_ip_change": "2050-12-04T17:51:40.339+00:00",
"last_reboot": "2050-12-04T17:51:40.339+00:00",
"traffic": 60156561622,
"h_threads": 99,
"s_threads": 0,
"city": "Austin",
"state": "TX"
}
]
}