Skip to main content

Get Check Results

Retrieve phone number validation results and fraud reports.

Get All Checks

Retrieve all phone checks with pagination support.

Endpoint

GET /api/v1/checkers/phone/

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number
page_sizeintegerNoResults per page

Request

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

Response (200)

{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": "9adb5486-0742-4c6f-a372-d434649aa698",
"status": "completed",
"created_at": "2026-03-07T12:00:00Z",
"report": {
"mcc": "310",
"mnc": "410",
"VOIP": false,
"city": "Washington",
"name": "AT&T Mobility",
"risky": false,
"valid": true,
"active": true,
"leaked": false,
"region": "District of Columbia",
"carrier": "AT&T",
"country": "United States",
"message": "Valid phone number.",
"prepaid": false,
"spammer": false,
"success": true,
"timezone": "America/New_York",
"zip_code": "20001",
"formatted": "+1 202 555 0123",
"line_type": "Mobile",
"sms_email": "2025550123@txt.att.net",
"request_id": "UuYUlmvcjn",
"sms_domain": "txt.att.net",
"do_not_call": false,
"fraud_score": 15,
"dialing_code": 1,
"local_format": "(202) 555-0123",
"recent_abuse": false,
"active_status": "Active",
"user_activity": "Medium",
"accurate_country_code": true,
"associated_email_addresses": {
"emails": [],
"status": "No associated emails found."
}
}
}
]
}

Get Specific Check

Retrieve results for a specific phone check by ID.

Endpoint

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

Path Parameters

ParameterTypeRequiredDescription
idstring (uuid)YesCheck identifier

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/checkers/phone/9adb5486-0742-4c6f-a372-d434649aa698/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here'

Response (200)

{
"id": "9adb5486-0742-4c6f-a372-d434649aa698",
"status": "completed",
"created_at": "2026-03-07T12:00:00Z",
"report": {
"mcc": "310",
"mnc": "410",
"VOIP": false,
"city": "Washington",
"name": "AT&T Mobility",
"risky": false,
"valid": true,
"active": true,
"leaked": false,
"region": "District of Columbia",
"carrier": "AT&T",
"country": "United States",
"message": "Valid phone number.",
"prepaid": false,
"spammer": false,
"success": true,
"timezone": "America/New_York",
"zip_code": "20001",
"formatted": "+1 202 555 0123",
"line_type": "Mobile",
"sms_email": "2025550123@txt.att.net",
"request_id": "UuYUlmvcjn",
"sms_domain": "txt.att.net",
"do_not_call": false,
"fraud_score": 15,
"dialing_code": 1,
"local_format": "(202) 555-0123",
"recent_abuse": false,
"active_status": "Active",
"user_activity": "Medium",
"accurate_country_code": true,
"associated_email_addresses": {
"emails": [],
"status": "No associated emails found."
}
}
}

Response Fields

Top-Level Fields

FieldTypeDescription
idstringCheck identifier
statusstringCheck status (completed, processing, failed)
created_atstringTimestamp when check was created
reportobjectDetailed validation report

Report Fields

Basic Information

FieldTypeDescription
validbooleanWhether the phone number is valid
activebooleanWhether the number is currently active
successbooleanWhether the check was successful
messagestringStatus message
formattedstringInternational format
local_formatstringLocal format with country conventions
countrystringCountry name
dialing_codeintegerCountry dialing code

Carrier Information

FieldTypeDescription
carrierstringCarrier name
namestringFull carrier name
line_typestringType (Mobile, Landline, VOIP, Unknown)
mccstringMobile Country Code
mncstringMobile Network Code
prepaidbooleanWhether it's a prepaid number

Geographic Information

FieldTypeDescription
citystringCity name
regionstringState/province
zip_codestringPostal code
timezonestringIANA timezone identifier
accurate_country_codebooleanWhether country detection is accurate

Fraud & Risk Assessment

FieldTypeDescription
fraud_scoreintegerFraud score (0-100, higher = riskier)
riskybooleanWhether number is flagged as risky
VOIPbooleanWhether it's a VOIP number
spammerbooleanKnown spammer
leakedbooleanFound in data breaches
recent_abusebooleanRecently used for abuse
do_not_callbooleanOn do-not-call registry
user_activitystringActivity level assessment

Additional Features

FieldTypeDescription
active_statusstringDetailed active status
sms_emailstringSMS-to-email gateway address
sms_domainstringCarrier's SMS gateway domain
associated_email_addressesobjectLinked email addresses (if available)

Fraud Score Interpretation

Score RangeRisk LevelDescription
0-25Low RiskNumber appears legitimate
26-50Medium RiskSome risk indicators present
51-75High RiskMultiple risk factors detected
76-100Very High RiskStrong indicators of fraud

Status Values

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

Notes

  • Check results are stored permanently and can be retrieved multiple times
  • Processing typically completes in 1-3 seconds
  • Invalid phone numbers will return valid: false with minimal data
  • Some fields may show "N/A" or null if data is unavailable