Skip to main content

Get SOCKS Check Results

Retrieve SOCKS/IP checker tasks and reports.

Get All SOCKS Checks

Endpoint

GET /api/v1/checkers/socks/

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number
page_sizeintegerNoResults per page

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/checkers/socks/?page=1&page_size=20' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here'

Response (200)

{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "f2d03f0d-22f7-4af9-a7fd-1f554faa10de",
"status": "completed",
"created_at": "2026-03-07T12:00:00Z",
"report": "IP reputation report payload"
}
]
}

Get Specific SOCKS Check

Endpoint

GET /api/v1/checkers/socks/{id}/

Path Parameters

ParameterTypeRequiredDescription
idstring (uuid)YesCheck identifier

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/checkers/socks/f2d03f0d-22f7-4af9-a7fd-1f554faa10de/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here'

Response (200)

{
"id": "f2d03f0d-22f7-4af9-a7fd-1f554faa10de",
"status": "completed",
"created_at": "2026-03-07T12:00:00Z",
"report": "IP reputation report payload"
}

Response Fields

FieldTypeDescription
idstring (uuid)Checker task identifier
statusstringTask status
created_atstring (date-time)Creation timestamp
reportstringReport payload

Status Values

ValueDescription
newJust created. Not yet processed
ready_to_perform_auditReady to run audit
processingWaiting report
completedFinished (success or failed, details in report)