Skip to main content

Proxy History

Get a list of your ordered proxies and manage their settings.

Get Proxy History

Retrieve all proxies you have ordered.

Endpoint

GET /proxies/history/

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number for pagination
page_sizeintegerNoNumber of results per page

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/proxies/history/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here'

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": "United States",
"traffic_remains": -1,
"change_ip_links": [],
"ovpn_config_link": "---",
"auto_renew_request": false,
"proxy_category": "lte",
"access_type": "private",
"connection_host": "0.0.0.0",
"connection_port": "10000",
"xray_settings_str": null
}
]
}

Response Fields

FieldTypeDescription
countintegerTotal number of results
nextstringURL of the next page (null if last)
previousstringURL of the previous page (null if first)
resultsarrayArray of proxy history records
idstring (UUID)Unique proxy identifier
urlstringProxy connection URL
connection_loginstringLogin credentials
connection_passwordstringPassword credentials
connection_hoststringProxy server hostname
connection_portstringProxy server port
system_statusstringCurrent status (active, inactive)
expiredbooleanWhether proxy has expired
access_starts_atstring (datetime)Start time of access
access_expires_atstring (datetime)Expiration time
public_ipaddressstringPublic IP address
geoipstringGeographic location
traffic_remainsintegerRemaining traffic in bytes (-1 for unlimited)
change_ip_linksarrayLinks to change IP
ovpn_config_linkstringOpenVPN configuration link
auto_renew_requestbooleanAuto-renewal status
proxy_categorystringCategory: datacenter, lte, residential_rotating, residential_static
access_typestringAccess type: shared or private
xray_settings_strstringXray proxy settings (null if not applicable)

Update Auto-Renewal

Change the auto-renewal setting for a proxy.

Endpoint

PATCH /proxies/history/{id}/

Path Parameters

ParameterTypeRequiredDescription
idstring (UUID)YesProxy history record identifier

Request

curl -X 'PATCH' \
'https://app.cyberyozh.com/api/v1/proxies/history/9a440c2a-157f-4562-8209-25022ec4143a/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here' \
-H 'Content-Type: application/json' \
-d '{
"auto_renew_request": true
}'

Request Body

FieldTypeRequiredDescription
auto_renew_requestbooleanNoEnable or disable auto-renewal

Response

Returns the full proxy history object (see response fields above).

Change Fingerprint

Modify browser fingerprint for a designated proxy server.

Endpoint

POST /proxies/history/{id}/change-fingerprint/

Path Parameters

ParameterTypeRequiredDescription
idstring (UUID)YesProxy history record identifier

Request

curl -X 'POST' \
'https://app.cyberyozh.com/api/v1/proxies/history/9a440c2a-157f-4562-8209-25022ec4143a/change-fingerprint/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here' \
-H 'Content-Type: application/json' \
-d '{
"value": "windows:4"
}'

Request Body

FieldTypeRequiredDescription
valuestringYesFingerprint identifier (see values below)

Fingerprint Values

ValueDescription
android:4Android 14
macosx:4MacOSX 12.6
ios:3iPhone 12 Max
windows:1Windows 10 Server
windows:4Windows 10 Desktop
""Reset fingerprint

Response

{
"status": "success",
"message": "Fingerprint updated successfully",
"code": "FINGERPRINT_UPDATED"
}