Phone Number Validation
Requirements
- API key pair
- Service
enabled
(done by iDenfy's staff) - Number validation credits

Phone Number Risk Scoring for Instant Validation
- Receive phone risk score via API
- Filter invalid numbers, identify risky customers
- Get detailed phone insights in one call
number validation
Authorization: API key pair
Method: POST
Endpoint: https://ivs.idenfy.com/fraud/validate-phone
Request structure
correct format
If the provided phone number in the request is not in E.164
format or it's not a mobile phone number, our servers may return an empty string. ""
Key | Required | Type | Constraints | Explanation |
---|---|---|---|---|
phone_number | Yes | String | - E.164 format | Phone number with country code to check |
current_location | No | String | - Country alpha-2 code | Current IP address location |
Response structure
Request example
{
"phone_number": "+12025550163",
"current_location": "US"
}
Response example
{
"risk_score": 10.0,
"country_code": "US",
"current_network": "United States Premium",
"current_route": "unknown",
"original_network": "United States Premium",
"availability": "unknown",
"validity": "not_valid",
"roaming": "unknown",
"roaming_country": null,
"roaming_network_name": null,
"request_id": "fcecf6e6-1ad7-4d5e-98a8-cc9b2d5575eb"
}