GET
/
v1
/
proxies
/
{proxyName}
curl --request GET \
  --url https://cmd.illusory.io/v1/proxies/{proxyName} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "proxy_name": "ILL-US-AU1-9999",
    "nickname": "<string>",
    "isp": "Verizon",
    "period": "weekly",
    "auto_renew": true,
    "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": "<string>",
    "auto_change": true,
    "auto_change_time": 123,
    "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": 123,
    "city": "Austin",
    "state": "TX"
  }
}

Authorizations

Authorization
string
headerrequired

The Authorization header is used to authenticate with the API using your Master API key. Value is of the format Bearer YOUR_KEY_HERE.

Path Parameters

proxyName
string
required

Replace {proxyName} in the url path with YOUR_PROXY.

Response

200 - application/json
ok
boolean

Indicates whether the request was successful e.g., true

data
object