Check SOCKS / IP Addresses
Submit one or more IP addresses for SOCKS/IP reputation checks.
Submit SOCKS Check
Endpoint
POST /api/v1/checkers/socks/
Request Body
{
"ips": [
"8.8.8.8",
"1.1.1.1"
]
}
Request Example
curl -X 'POST' \
'https://app.cyberyozh.com/api/v1/checkers/socks/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here' \
-H 'Content-Type: application/json' \
-d '{
"ips": ["8.8.8.8", "1.1.1.1"]
}'
Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
ips | array of strings | Yes | List of IP addresses to check |
Response (201)
{
"ips": [
"8.8.8.8",
"1.1.1.1"
]
}
Notes
- You can submit one or multiple IPs in a single request
- Checks are asynchronous; use GET endpoints to track status and fetch reports