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
| Parameter | Type | Required | Description |
|---|---|---|---|
type_format | string | Yes | Credential format (see below) |
protocol | string | No | Connection protocol: http, socks5 |
page | integer | No | Page number for pagination |
page_size | integer | No | Number of results per page |
Format Types
| Value | Example Output |
|---|---|
full_url | http://user:pass@proxy.example.com:8080 |
ip_port_user_pass | proxy.example.com:8080:user:pass |
user_pass_at_ip_port | user: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
| Parameter | Type | Required | Description |
|---|---|---|---|
type_format | string | No | Credential format: full_url, ip_port_user_pass, user_pass_at_ip_port |
protocol | string | No | Connection protocol: http, socks5 |
page | integer | No | Page number for pagination |
page_size | integer | No | Number 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