Skip to main content

Get Credit Card Check Results

Retrieve credit card checker tasks and reports.

Get All Credit Card Checks

Endpoint

GET /api/v1/checkers/ccard/

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number
page_sizeintegerNoResults per page

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/checkers/ccard/?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": "84e9e154-197f-47dc-830a-066f983f1e4c",
"status": "completed",
"created_at": "2026-03-07T12:00:00Z",
"report": "Credit card checker report payload"
}
]
}

Get Specific Credit Card Check

Endpoint

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

Path Parameters

ParameterTypeRequiredDescription
idstring (uuid)YesCheck identifier

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/checkers/ccard/84e9e154-197f-47dc-830a-066f983f1e4c/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here'

Response (200)

{
"id": "84e9e154-197f-47dc-830a-066f983f1e4c",
"status": "completed",
"created_at": "2026-03-07T12:00:00Z",
"report": "Credit card checker 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)