Skip to main content

Proxy History

View your ordered proxies and manage auto-renewal settings.

List Ordered Proxies

GET /proxies/history/

Returns a list of all proxies you have ordered.

Query Parameters

ParameterTypeDescription
access_typestringshared or private
categorystringdatacenter_dedicated, datacenter_shared, lte, residential_rotating, residential_static
expiredbooleanFilter expired proxies
idsarrayComma-separated list of proxy IDs
pageintegerPage number

Response

{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "9a440c2a-157f-4562-8209-25022ec4143a",
"url": "socks5://0.0.0.0:10000",
"connection_login": "connection_login",
"connection_password": "connection_password",
"system_status": "active",
"expired": "false",
"access_starts_at": "2023-08-25T11:25:31.218478Z",
"access_expires_at": "2023-08-26T11:25:28.742274Z",
"public_ipaddress": "1.1.1.1",
"geoip": "US",
"change_ip_links": "https://detect.expert/api/v1/proxies/user-proxy-server/refresh-ip/",
"auto_renew_request": false,
"proxy_category": "lte",
"access_type": "private",
"connection_host": "0.0.0.0",
"connection_port": "10000",
"xray_settings_str": "string"
}
]
}

Update Auto-Renewal

PATCH /proxies/history/{id}/

Toggle the auto_renew_request flag for an ordered proxy.

Request Body

{
"auto_renew_request": true
}

Response

{
"id": "9a440c2a-157f-4562-8209-25022ec4143a",
"url": "socks5://0.0.0.0:10000",
"connection_login": "connection_login",
"connection_password": "connection_password",
"system_status": "active",
"expired": "false",
"access_starts_at": "2023-08-25T11:25:31.218478Z",
"access_expires_at": "2023-08-26T11:25:28.742274Z",
"public_ipaddress": "1.1.1.1",
"geoip": "US",
"change_ip_links": "https://detect.expert/api/v1/proxies/user-proxy-server/refresh-ip/",
"auto_renew_request": true,
"proxy_category": "lte",
"access_type": "private",
"connection_host": "0.0.0.0",
"connection_port": "10000",
"xray_settings_str": "string"
}