Register: https://app.cyberyozh.com/
Ask for access in support and after you can generate an API key in the API Keys section, available in your profile menu
swagger docs: https://app.cyberyozh.com/docs/
use:
curl -X 'GET' \\
'<https://app.cyberyozh.com/api/v1/proxies/shop/>' \\
-H 'accept: application/json' \\
-H 'X-Api-Key: _your_api_key_'
https://app.cyberyozh.com/api/v1/
GET **/**users/balance
Retrieve account balance.
GET /proxies/history/
Get a list of ordered proxies:
[
{
"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": true,
"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": {
"ispName": "---",
"district": "---",
"countryCode2": "US"
},
"traffic_remains": -1,
"change_ip_links": [],
"ovpn_config_link": "---",
"auto_renew_request": false
},
...
]
PATCH /proxies/history/{id}/
Change the renew parameter of the ordered proxy:
{
"auto_renew_request": true
}
Response example:
{
"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": true,
"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": {
"ispName": "---",
"district": "---",
"countryCode2": "US"
},
"traffic_remains": -1,
"change_ip_links": [],
"ovpn_config_link": "---",
"auto_renew_request": true
}