Skip to main content

Proxy Credentials

Retrieve and download proxy connection credentials in various formats.

Get Credentials

Retrieve proxy credentials in the specified format.

Endpoint

GET /proxies/proxy-credentials/

Query Parameters

ParameterTypeRequiredDescription
type_formatstringYesCredential format (see below)
protocolstringNoConnection protocol: http, socks5
pageintegerNoPage number for pagination
page_sizeintegerNoNumber of results per page

Format Types

ValueExample Output
full_urlhttp://user:pass@proxy.example.com:8080
ip_port_user_passproxy.example.com:8080:user:pass
user_pass_at_ip_portuser:pass@proxy.example.com:8080

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/proxies/proxy-credentials/?type_format=full_url&protocol=http' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here'

Response

{
"count": 10,
"next": null,
"previous": null,
"results": [
{
"credentials": [
"http://user:pass@proxy.example.com:8080",
"http://user:pass@proxy2.example.com:8080"
]
}
]
}

Download Credentials

Download proxy credentials as a plain text file.

Endpoint

GET /proxies/proxy-credentials/download/

Query Parameters

ParameterTypeRequiredDescription
type_formatstringNoCredential format: full_url, ip_port_user_pass, user_pass_at_ip_port
protocolstringNoConnection protocol: http, socks5
pageintegerNoPage number for pagination
page_sizeintegerNoNumber of results per page (default: 100)

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/proxies/proxy-credentials/download/?type_format=full_url&protocol=socks5' \
-H 'X-Api-Key: your_api_key_here' \
-o proxies.txt

Response

Plain text file with one credential per line:

socks5://user1:pass1@proxy.example.com:8080
socks5://user2:pass2@proxy2.example.com:8080